@import url('https://fonts.googleapis.com/css2?family=Geist+Pixel&family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

body {
    background-color: #0000FD;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    overflow: hidden;
    margin: 0;
}

body::selection {
    background: #dbfe01;
    color: black;
}

a {
    color: white;
    font-weight: bold;
    position: relative;
    text-decoration: none;
    transition: transform 0.5s ease-in-out;
    cursor: grab;
}

.box {
    color: white;
    font-family: "IBM Plex Mono";
    text-align: center;
    width: 100%;
}

.packt {
    font-weight: 100;
    font-size: 3em;
}

.sardines {
    font-family: "IBM Plex Mono";
    font-weight: 100;
    color: white;
    font-weight: bold;
    position: relative;
    text-decoration: none;
    transition: transform 0.5s ease-in-out;
}

a:hover {
    color: black;
    transition: 0.5s ease-in-out;
}

a::before {
    background: #dbfe01;
    content: "";
    inset: 0;
    position: absolute;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: 0.5s ease-in-out;
    z-index: -1;
}

a:hover::before {
    transform: scaleY(1);
    transform-origin: bottom;
}

.crushd {
    font-size: 1vh;
    text-align: center;
    margin-bottom: 9em;
    margin-top: -5%;
    font-weight: 100 !important;
}

.tin {
    font-weight: 300;
}

.pulk {
    font-family: "Geist Pixel";
    color: white;
    font-size: 1.5em;
    z-index: 99;
    text-transform: uppercase;
}

.doors {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    position: absolute;
    bottom: 5%;
}

.minutewarning {
    position: absolute;
    display: none;
    top: 10px;
    width: 90%;
    padding: 5px;
    padding-top: 0;
    text-align: justify;
    color: #0000FD;
    background-color: white;
    font-family: "IBM Plex Mono";
    font-size: 0.7em;
}

.i {
    text-align: justify;
    color: white;
    font-family: "IBM Plex Mono";
    position: fixed;
    font-weight: bold;
    top: 10px;
    right: 10px;
}

.x {
    width: 100%;
    padding: 0;
    margin: 0;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: right;
}

@media screen and (min-width: 700px) {
    body {
        overflow: hidden;
    }

    .i {
        display: none;
    }
}