@font-face {
    font-family: Segment7;
    src: url('/assets/fonts/Segment7Standard.otf');
}

:root {
    color: #fff;
}

body {
    background-color: #000 !important;
    /* background-image: url('/assets/bg.jpg'); */
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    max-width: 100vw;
    overflow-x: hidden;
}

.video-bg-loop-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    filter: blur(10px);
}

.video-bg-loop-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    object-fit: cover;
    object-position: center;
}

.bg-dark-translucent {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
}

.video-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.iframe {
    aspect-ratio: 16 / 9;
    width: 100% !important;
}

@supports not (aspect-ratio: 16 / 9) {
    .iframe::before {
        float: left;
        padding-top: 56.25%;
        content: "";
      }
  
    .iframe::after {
        display: block;
        content: "";
        clear: both;
    }
}