@font-face {
    font-family: "Roboto Flex";
    src: url("/Assets/Fonts/RobotoFlex-Regular.ttf");
    font-style: normal;
    font-weight: 400;
    text-rendering: optimizeLegibility
}


@font-face {
    font-family: "Beep";
    src: url("/Assets/Fonts/Beep-Regular.otf");
    font-style: normal;
    font-weight: 400;
    text-rendering: optimizeLegibility
}

@font-face {
    font-family: "Norwester";
    src: url("/Assets/Fonts/norwester.eot");
    src: url("/Assets/Fonts/norwester.eot?#iefix") format("embedded-opentype"), 
         url("/Assets/Fonts/norwester.woff") format("woff"),
         url("/Assets/Fonts/norwester.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    text-rendering: optimizeLegibility
}

body, html {
    height: 100%
}

body {
    overflow: hidden
}

#background-video {
    position: fixed;
    top: 0;
    bottom: 0;
    left: auto;
    right: auto;
    z-index: -10;
    object-fit: cover;
    height: 100vh;
    width: 100vw
}

.icon-button {
    padding: 8px 16px;
    transition: transform .3s cubic-bezier(.175, .885, .32, 1.275)
}

.icon-button:hover {
    padding: 8px 16px;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1);
}

.icon-button img {
    align-self: center;
    margin: 0 5px 0 0
}

.icon-button span {
    align-self: center;
    font-weight: 600
}

.accent-icon-button {
    border-radius: 10px;
    border: 2px solid var(--accent-color);
    box-shadow: 4px 4px 0 var(--accent-color2)
}

.accent-icon-button img {
    filter: invert(69%) sepia(71%) saturate(563%) hue-rotate(342deg) brightness(99%) contrast(87%)
}

#splash-title-root {
    display: flex;
    height: 100%;
    flex-direction: column;
    text-align: center;
    text-shadow: 2px 2px 4px var(--shadow-color);
    justify-content: center;
    margin-top: 100px;
}

#splash-title-info h3 {
    line-height: 120%;
    font-size: 1vmax;
    margin: 0;
    font-family: Beep;
    text-transform: uppercase;
    letter-spacing: 0.9svw;
    text-align: center;
    color: var(--accent-color);
    text-shadow: 1px 1px 0 var(--accent-color2);
    filter: blur(0.7px);
    opacity: .9
}

#splash-title-spacer {
    display: flex;
    flex-grow: 1;
    min-height: 100px
}

#splash-countdown-root {
    margin-top: 50px
}

@keyframes wiggle {
    0% { transform: rotate(0) }
    80% { transform: rotate(0) }
    85% { transform: rotate(-5deg) }
    90% { transform: rotate(5deg) }
    95% { transform: rotate(-5deg) }
    100% { transform: rotate(0) }
}

#splash-navigation-root {
    gap: 15px;
    margin-top: 60px;
    margin-bottom: 60px;
    filter: blur(.8px);
    opacity: .9;
    animation: wiggle 2.5s infinite
}

#splash-navigation-root:hover {
    filter: blur(0);
    animation: none
}

#splash-navigation-root span {
    color: var(--accent-color);
    text-shadow: var(--accent-color2) 1px 1px 0
}

#countdown-time {
    justify-content: center
}

.icon-button {
    align-content: center;
    height: 40px
}

.icon-button img {
    width: 40px;
    height: 40px
}

.countdown-value {
    margin: 15px 10px 10px 10px;
    width: 8vmax;
    color: var(--accent-color);
    text-shadow: var(--accent-color2) 2px 2px 0;
    font-family: Norwester, Roboto Flex;
    opacity: .9;
}

.countdown-value h1 {
    font-size: 8vmax;
    line-height: 70%;
    filter: blur(1.3px);
}

.countdown-value span {
    filter: blur(0.7px);
}

.countdown-label {
    margin-top: 10px;
    font-size: 1.5vmax
}

@media only screen and (min-width: 768px) {
    #splash-title-info h3 {
        filter: blur(1.2px);
    }

    .countdown-value {
        margin: 15px 50px 10px 50px;
        text-shadow: var(--accent-color2) 4px 4px 0;
    }

    .countdown-value h1 {
        filter: blur(2px);
    }
    
    .countdown-value span {
        filter: blur(1.5px);
    }

    .countdown-label {
        margin-top: 25px;
        font-size: 1.5vmax
    }
}