@font-face {
    font-family: 'Futura Std';
    src: url('./font/FuturaStd-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura Std';
    src: url('./font/FuturaStd-Condensed.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura Std';
    src: url('./font/FuturaStd-Heavy.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

body {
    background-color: black;
    color: white;
    overflow-x: hidden;
    overflow: hidden;
    margin: 0;
    padding: 0;
    font-family: "Futura Std", sans-serif;
}

.center {
    position: fixed;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.middle {
    position: fixed;
    top: 30%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.centertop {
    position: fixed;
    z-index: 100;
    left: 33%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.time {
    font-size: 2em;
    text-align: left;
    margin-right: 20px;
    display: inline-block;
}

.indent {
    padding-left: 1ch;
}

.doubleindent {
    padding-left: 2ch;
}

.gray {
    color: gray;
}

.systemdetail {
    float: right;
    padding-right: 1ch;
}

.box {
    width: 0%;
    height: 0%;
    border: 3px solid;
}

.badge-grid {
    margin: 0 58px 4px 58px !important;
}

.pixel {
    image-rendering: optimizeSpeed;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: pixelated;
    image-rendering: optimize-contrast;
    -ms-interpolation-mode: nearest-neighbor;
}

.badge-grid img {
    width: 88px;
    height: 31px;
}

.imagediv {
    display: flex;
    margin: 0 !important;
    align-items: center;
    
}

h1 {
    font-size: 2.6em;
}

.bottom {
    text-align: center;
    position: absolute;
    bottom: 0;
    margin: 0 0 25px 0 !important;
    width: 100%;
}

h1,
h2 {
    margin-bottom: 0px !important;
}

p {
    margin: 0px !important;
}

a {
    text-decoration: underline;
    color: white;
    transition: 0.5s;
}

label {
    cursor: pointer;
}

.pagelabel {
    position: fixed;
    z-index: 100;
    right: 0;
}

.homelabel {
    font-size: 1.5em;
    text-decoration: underline;
}

#hidebadges,
.hidden,

#me,
#music,
#socials,
#systems,
#badges,

#me-checkbox:checked~div .showme,
#me-checkbox:checked~div #home,

#music-checkbox:checked~div .showmusic,
#music-checkbox:checked~div #home,

#socials-checkbox:checked~div .showsocials,
#socials-checkbox:checked~div #home,

#systems-checkbox:checked~div .showsystems,
#systems-checkbox:checked~div #home,

#badge-checkbox:checked~div .showbadges,
#badge-checkbox:checked~div #home {
    display: none;
}

#me-checkbox:checked~div .hideme,
#me-checkbox:checked~div #me,

#music-checkbox:checked~div .hidemusic,
#music-checkbox:checked~div #music,

#socials-checkbox:checked~div .hidesocials,
#socials-checkbox:checked~div #socials,

#systems-checkbox:checked~div .hidesystems,
#systems-checkbox:checked~div #systems,

#badge-checkbox:checked~div .hidebadges,
#badge-checkbox:checked~div #badges {
    display: initial;
}

.spread {
    animation-name: spread;
    animation-fill-mode: forwards;
    animation-duration: 1s;
    animation-delay: 0.4s;
    animation-timing-function: ease;
}

@keyframes spread {
    0% {
        height: 0px;
        width: 0px;
    }

    50% {
        height: 0px;
        width: 400px;
    }

    100% {
        height: 600px;
        width: 400px;
    }
}

.static {
    animation-name: static;
    animation-fill-mode: forwards;
    animation-duration: 1s;
    animation-delay: 0.4s;
    animation-timing-function: ease;
}

@keyframes static {
    0% {
        height: 600px;
        width: 400px;
    }

    50% {
        height: 600px;
        width: 400px;
    }

    100% {
        height: 600px;
        width: 400px;
    }
}

.flicker {
    opacity: 0%;
    margin: 25px;
    animation-name: flicker;
    animation-fill-mode: forwards;
    animation-duration: 0.2s;
}

@keyframes flicker {
    0% {
        opacity: 0%;
    }

    1% {
        opacity: 100%;
    }

    19% {
        opacity: 100%;
    }

    20% {
        opacity: 0%;
    }

    99% {
        opacity: 0%;
    }

    100% {
        opacity: 100%;
    }
}