* {
    padding: 0;
    margin: 0;
}

body {
    color: white;
    background-color: black;
    background-image: url('https://clawrez.gay/img/noise.png');
    font-family: BIZUDMincho;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
}

#app {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.heading {
    font-family: ArchivoEB;
    font-size: 64px;
    text-align: center;
}

.paragraph {
    margin-bottom: 24px;
}

#games-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-wrap: wrap;
}

.section0, .section1 {
    display: flex;
    flex-direction: column;
}

.section1 {
    width: 100%;
}

.game {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 800px;
    height: 70px;
    padding: 8px;
    background-color: #0006;
    border: 1px solid white;
}

.game-thumbnail {
    height: 64px;
    border: 1px solid #333;
}

.game-desc {
    color: #999
}

.game-name {
    font-family: ArchivoEB;
    font-size: 24px;
    width: 100%;
    text-align: center;
}

.game-link {
    height: 100%;
    width: 100px;
    margin-right: -2px;
    font-family: BIZUDMincho;
    font-weight: 800;
    font-size: 16px;
    background-color: #00000000;
    border: 3px solid rgb(0, 0, 0);
    outline: 1px solid white;
    color: white;
    transition: 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
}

.game-link:hover {
    background: linear-gradient(#aaa,
            #aaa 4px,
            #fff 4px,
            #fff 5px);
    background-size: 100% 5px;
    animation: digital-background 0.3s infinite linear;
    color: black;
    text-shadow: 0 0 2px black;
    box-shadow: 0 0 60px #ffffff44;
}

@keyframes digital-background {
    from {
        background-position: 0% 0%;
        opacity: 100%;
    }

    to {
        background-position: 0% -100%;
        opacity: 80%;

    }
}

@media screen and (max-width: 850px) {
    .paragraph {
        font-size: 15px;
        max-width: 90%;
    }

    .heading {
        font-size: 48px;
        max-width: 90%;
    }

    .game {
        height: 130px;
    }

    .game-desc {
        font-size: 14px;
    }

    .game-name {
        font-size: 20px;
    }
}

@font-face {
    font-family: BIZUDMincho;
    src: url('https://clawrez.gay/fonts/BIZUDMincho-Regular.ttf');
}

/* FIX THESE */

@font-face {
    font-family: ArchivoEB;
    src: url('https://clawrez.gay/fonts/Archivo_Expanded-Black.ttf');
}