@font-face {
  font-family: "nokia";
  src: url(nokiafc22.ttf);
}

body {
    margin: 0;
    padding: 0;
    background-color: black;
    overflow-x: hidden;
    overflow-y: hidden;
    scroll-behavior: smooth;
    pointer-events: none;
    text-align: center;
}


/* VIDEO STUFF */


div.vid {
    height: 20000px;
}

div.vid div.holder {
    position: sticky;
    top: 0;
}

div.vid video {
    display: flex;
    position: fixed;
    padding: 0;
    margin: 0;
    z-index: 0;
    /* top: 50%;
    left: 50%; */
    /* min-width: 100%;
    min-height: 100%; */
    width: 100%;
    height: 100vh;
    object-fit: cover;
    /* z-index: -100; */
    /* transform: translateX(-50%) translateY(-50%); */
}


/* THEME SCREEN */

.theme {
    display: flex;
    width: 100%;
    height: 100%;
    gap: 12px;
    z-index: 1;
}

.theme h1 {
    position: relative;
    margin: auto;
    font-family: "nokia";
    font-size: 8vw;
    text-align: center;
    color: white;
    width: 14ch;
    white-space: nowrap;
    overflow: hidden;
    animation: type 2s steps(12);
    animation-delay: 1s;
    animation-fill-mode: both;
    user-select: none;
}

@keyframes type {
    0% {
        width: 0;
    }
}

#theme-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: black;
    transition: opacity 3s ease;
}

.fade-in {
    opacity: 1;
}

.fade-out {
    opacity: 0;
    pointer-events: none;
}


/* HEADER BUTTONS */

.header-buttons {
    display: block;
    position: fixed;
    gap: 12px;
    width: 100vw;
    height: 3vh;
    top: 0;
    text-align: center;
    /* justify-content: center; */
}

.header-buttons button {
    position: relative;
    /* text-align: center; */
    /* font-size: 1.5vw; */
    font-family: nokia;
    display: inline-block;
    z-index: 0;
    width: auto;
    height: 100%;
    /* margin: auto; */
    top: 0;
    border: 1px solid black;
    border-radius: 10px;
    border-width: 3px;
    /* box-shadow: 3px 3px 0 0; */
    width: fit-content;
}


/* INSTRUCTIONS AT BOTTOM (CHANGES AT DIFFERENT SECTIONS (TICKETS, WORKERS, SOCIALS) */


.tickets-instructions {
    display: flex;
    gap: 12px;
}

#tickets-instructions-id {
    gap: 12px;
}

.tickets-instructions h1 {
    position: fixed;
    font-family: "nokia";
    font-size: 3vw;
    color: white;
    /* position: absolute; */
    margin: auto;
    text-align: center;
    bottom: 1%;
    width: 100%;
    user-select: none;
    z-index: 0;
}

.workers-instructions {
    display: none;
    gap: 12px;
}

#workers-instructions-id {
    gap: 12px;
}

.workers-instructions h1 {
    font-family: "nokia";
    font-size: 3vw;
    color: white;
    position: fixed;
    margin: auto;
    text-align: center;
    bottom: 1%;
    width: 100%;
    user-select: none;
    z-index: 0;
}

.socials-instructions {
    display: none;
    gap: 12px;
}

#socials-instructions-id {
    gap: 12px;
}

.socials-instructions h1 {
    font-family: "nokia";
    font-size: 3vw;
    color: white;
    position: fixed;
    margin: auto;
    text-align: center;
    bottom: 1%;
    width: 100%;
    user-select: none;
    z-index: 0;
}