@import url('https://fonts.googleapis.com/css2?family=Azeret+Mono:wght@600&display=swap');

  @keyframes slide-in {
    0% {
        top: 110%;
        opacity: 0%;
    }
    100% {
        top: 85%;
        opacity: 100%;
    }
  }

* {
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  
body {
    background-color: black;
    overflow: hidden;
}

.fullscreen-video {
    opacity: 100%;
    filter: blur(0.0rem);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
}

#vignette {
    position: absolute;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    height: 100vh;
    width: 100vw;
    z-index: 3;
}

#video-container {
    position: absolute;
    z-index: 4;
    height: 100vh;
    width: 100vw;   
}

.ach-ind {
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100vh;
    width: 100vw;
}

.buttons {
    font-family: 'Azeret Mono', monospace;
    height: fit-content;
    width: 90vw;

    position: absolute;
    z-index: 99;
    top: 55%;
    left: 50%;
    opacity: 0%;
    transform: translate(-50%, -50%);   
    animation-name: slide-in;
    animation-duration: 1s;
    animation-delay: 2s; /* 3 seconds delay */
    animation-timing-function: ease-in-out; /* Easing */
    animation-fill-mode: forwards; /* Keep the element in its final state */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.button-left {
    color: white;
    font-family: 'Azeret Mono', monospace;
    width: 35%;
    box-sizing: border-box;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.7rem;
    padding-right: 0.7rem;


background: linear-gradient(266.95deg, #5000FF 7.95%, #8000FF 91.82%);
border: 4px solid rgba(0, 0, 0, 0.2);
box-shadow: 0px 4px 26px rgba(80, 0, 255, 0.42);
border-radius: 74.1194px;


}

.button-right {
    color: black;
    font-family: 'Azeret Mono', monospace;
    width: 100%;
    margin-left:0.5rem;
    box-sizing: border-box;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.7rem;
    padding-right: 0.7rem;

background: linear-gradient(266.95deg, #27FF63 7.95%, #27FFD8 91.82%);
border: 4px solid rgba(0, 0, 0, 0.2);
box-shadow: 0px 4px 26px rgba(39, 255, 216, 0.42);
border-radius: 74.1194px;
}