*{
    --mainfontcolor: var(--white);
    --lightgrey: #cecece;
    --maingrey: #414141;
    --white: #FFFFFF;
}

body{
    background-color: rgb(254, 210, 48);
}
#first_segment{
    height: 100vh;
    width: 100%;
}
#video_container{
    overflow: hidden;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    aspect-ratio: 16/9;
}

#video_container_button{
    z-index: 3;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    padding: 0.5em;
    width: fit-content;
    max-width: 80%;
    background-color: #00000088;
    border-color: #FFFFFF;
    border-radius: 1em;
    border-width: 2px;
    border-style: solid;
    font-size: 1.5em;
    color: var(--mainfontcolor);
}
#video_container_button:hover{
    background-color: #ffffff4b;
    cursor: pointer;
}
#video_container_video{
    z-index: 2;
    position: absolute;
    width: 100%;
    height: 100%;
    transform: translateX(-50%);
}
#video_container_backdrop{
    z-index: 1;
    position: absolute;
    background-color: rgb(254, 210, 48);
    height: 100%;
    width: 100%;
}