@font-face {
    font-family: lcd;
    src: url('fonts/LCDM2N__.ttf');
}

* {
    margin: 0;
    padding: 0;
}

html, body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    box-sizing: border-box;
    background: #0f0f13;
    touch-action: none;
    -webkit-user-select: none;
    user-select: none;
}

.lcd-panel img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    display: none;
}

.lcd-panel img.bottom {
    top: auto;
    bottom: 0;
}

.lcd-panel img.on {
    display: block;
}

.lcd-panel .text {
    font-family: lcd;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 12vw;

}

@media (min-aspect-ratio: 850/785) {
    .lcd-panel .text {
        font-size: 12vh;
    }
}
