<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.video-bg-container {
    height: 100vh;
    min-height: 550px;
    width: 100%;
    position: relative;
    margin-bottom: 50px;
    background: transparent;
}

.video-bg-container .heading-color {
    color: #FFC72C;
    font-size: 25pt;
    /*padding-top: 40px;*/
}

@media only screen and (min-width: 576px) {
    .video-bg-container .heading-color {
        color: #FFC72C;
        font-size: 30pt;
        /*padding-top: 40px;*/
    }
}

@media only screen and (min-width: 1224px) {
    .video-bg-container .heading-color {
        color: #FFC72C;
        font-size: 35pt;
        /*padding-top: 40px;*/
    }
}

@media only screen and (min-width: 1824px) {
    .video-bg-container .heading-color {
        color: #FFC72C;
        font-size: 55pt;
        /*padding-top: 55px;*/
    }
}

.video-bg {
    position: fixed;
    display: block;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    overflow: hidden;
    z-index: -1;
}

.video-bg-controls {
    bottom: -30px;
    right: 45px;
    font-size: 2rem;
}

.video-bg-controls:hover {
  cursor: pointer;
}

/* For YouTube video */
.video-background {
    background: #000;
    position: fixed;
    top: 0; 
    right: 0; 
    bottom: 0; 
    left: 0;
    z-index: -99;
}
.video-foreground,
.video-background iframe {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    pointer-events: none;
}

@media (min-aspect-ratio: 16/9) {
    .video-foreground { 
        height: 300%; 
        top: -100%;
    }
}
@media (max-aspect-ratio: 16/9) {
    .video-foreground { 
        width: 300%; 
        left: -100%; 
    }
}</pre></body></html>