:root{
    --accent_color: rgb(251,167,0);
}



#background_container{
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
    #background_container video, #background_container img {
        width: 130%;
        height: 130%;
        transform: translate(-5%, -5%);
        object-fit: cover;
        /* transition: filter 0.5s ease-in-out; */
        filter: blur(15px);
    }






#title{
    position: absolute;
    bottom: var(--small_spacing);
    color: var(--accent_color);
    z-index: 100;
    margin-left: calc(var(--bodytext_wide_width) + var(--standard_spacing));
    width: var(--bodytext_wide_width);
}
    #title h1{
        margin-bottom: 15px;
    }
    #title::selection{
        color: var(--light_yellow);
    }
    .black_title{
        color: black;
    }

.two_column_content_container{
    margin-top: 100vh;
}
    .portrait, .landscape{
        width: 35vw;
        max-height: none;
        border-radius: 8px;
        overflow: hidden;
    }





@media only screen and (max-width:900px) {
    #background_container{
        position: static;
        margin-top: calc(-3 * var(--standard_spacing));
        margin-left: calc(-1 * var(--standard_spacing));
    }
    
    #title{
        position: absolute;
        top: var(--standard_spacing);
        width: var(--full_width);
        margin-left: 0;
    }

    .two_column_content_container{
        display: flex;
        flex-direction: column-reverse;
        margin-top: var(--medium_spacing);
    }
        .two_column_content_container_text_container{
            position: static;
            margin-bottom: var(--large_spacing);
        }



    .portrait, .landscape, video{
        width: var(--full_width);
        height: auto;
    }
}