@font-face {
    src: url("./font/Inconsolata.ttf");
    font-family: "Inconsolata", monospace;
}


body {
    background-color: black;
    color: rgb(255, 0, 204);
    overflow-x: hidden;
    overflow: hidden;
    margin: 0;
    padding: 0;
    font-family: "Inconsolata", monospace;
}

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

.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;
    border-image: linear-gradient(to right, red,orange,yellow,green,blue,indigo,violet) 1;
}

.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 {
    gap: 25px;
    color: #585858;
    text-align: center;
    justify-content: space-evenly;
    display: flex;
    margin: 0 !important;
}

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;
    top: 0;
}

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

.unavailable {
    color: gray;
    text-decoration: none;
}

.hidden {
    display: none;
}

.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;
    }
}

.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%;
    }
}

.bottom-header {
    margin: 5px 10px; 
    display: inline-block;
}