body{
    overflow: hidden;
}

.site_container{
    display: flex;
    height: calc(100vh - 100px);
}

.site_texts{
    width: 50vw;
    position: relative;
    color: white;
}

.site_video{
    width: 50vw;
    position: relative;
}

.site_video video {
    width: 90%;
    box-shadow: 15px 10px 20px rgba(0, 0, 0, 0.3)  ;
}

.site_texts h1 {
    display: inline;
    font-size: 2vw;
}

.site_texts h3 {
    font-size: 1vw;
    margin-bottom: 3vw;
}

.site_texts p {
    font-size: 1vw;
}

.text_container{
    width: 45vw;
    padding-left: 2vw;
}

#main {
    height: calc(100vh - 100px);
    overflow-y: scroll;
    overflow-x: hidden;
}

::-webkit-scrollbar{
    width: 5px;
    height: 5px;
    }
    ::-webkit-scrollbar-thumb{
    background: #FFFFFF;
    border-radius: 0px;
    }
    ::-webkit-scrollbar-thumb:hover{
    background: #FFFFFF;
    }
    ::-webkit-scrollbar-track{
    background: #000000;
    border-radius: 0px;
    box-shadow: inset 0px 0px 0px 0px #827878;
    }

@media only screen and (max-width: 1000px) {
    
    .site_container{
        flex-direction: column-reverse;
        justify-content: space-around;
    }

    .site_texts{
        height: fit-content;
    }

    .site_video{
        height: fit-content;
    }

    .centered-vertical{
        position: relative;
        top: unset;
        left: unset;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
    }

    .centered {
        position: relative;
        top: unset;
        left: unset;
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
    }

    .site_texts{
        width: 100vw;
        position: relative;
        color: white;
    }
    
    .site_video{
        width: 100vw;
        position: relative;
    }
    
    .site_video video {
        width: 90%;
        box-shadow: 15px 10px 20px rgba(0, 0, 0, 0.3)  ;
        margin-left: 5%;
    }
    
    .site_texts h1 {
        display: inline;
        font-size: 5vw;
    }
    
    .site_texts h3 {
        font-size: 3vw;
        margin-bottom: 3vw;
    }
    
    .site_texts p {
        font-size: 3vw;
    }
    
    .text_container{
        width: 90vw;
        padding-left: 5vw;
    }
}