@font-face {
    font-family: 'MorePerfectDOSVGA';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/MorePerfectDOSVGA.woff2') format('woff2');
}

@media screen and (min-width: 720px) {
    html,
    body {
        height: 100%;
    }

    body {
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 0;
    }

    main {
        flex-shrink: 0;
        height: 400px;
        width: 720px;
    }

    main .pc-simulation {
        display: block;
    }

    main .site-content {
        display: none;
    }
}

@media screen and (max-width: 719px) {
    main .pc-simulation {
        display: none;
    }
}

body {
    background: rgb(0, 0, 0);
    color: rgb(170, 170, 170);
    font-family: 'MorePerfectDOSVGA', monospace;
    font-smooth: never;
}

::selection {
    background: rgb(170, 170, 170);
    color: rgb(0, 0, 0);
}

a {
    color: rgb(85, 255, 255);
}

main {
    max-width: 720px;
}

main em {
    color: rgb(255, 255, 255);
    font-style: normal;
}

main p {
    margin: 0;
}

main .pc-simulation,
main .screen {
    height: 100%;
}

main .screen.play {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    user-select: none;
}

main .screen.play .row {
    align-items: center;
    display: flex;
    height: 133px;
}

main .screen.play .button {
    cursor: pointer;
    transition: opacity 0.2s ease;
}

main .screen.play .button:hover {
    cursor: pointer;
    opacity: 0.75;
}

main .screen.post {
    display: flex;
    flex-direction: column;
}

main .no-user-select {
    user-select: none;
}

main .screen.post .top {
    flex-grow: 1;
}

main .screen.post .epa {
    background: yellow;
    float: right;
    height: 84px;
    transition: opacity 1s linear;
    width: 136px;
}

main .screen.post .kawaii {
    background: pink;
    float: left;
    height: 32px;
    width: 27px;
}

main .hidden {
    display: none !important;
}

main .visible {
    display: block !important;
}

main .transparent {
    opacity: 0;
}