* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    color: white;
    background: black;
    font-family: DejaVuSansMono, monospace;

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

.game {
    /* color: rgb(0, 255, 0); */
    color: rgb(194, 255, 173);

    /* font-size: 1.2rem; */
    /* letter-spacing: 1.2px; */
}

#title {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);

    font-size: 10px;
}