html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #030302;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
}

.game {
    display: grid;
    grid-template-columns: repeat(9, 40px);
    grid-template-rows: repeat(7, 40px);
    grid-gap: 1.5rem;
}

.item {
    background-color: #FECE00;
    text-align: center;
    color: white;
    font-size: 1.6em;
    line-height: 150%;
    font-family: sans-serif;
}

.transparent {
    background: rgba(255,255,255,0.05);
}

.message {
    color: white;
    font-family: sans-serif;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -200%);
}

.stats {
    position: fixed;
    top: 5px;
    left: 5px;
    color: #DDD;
    font-family: sans-serif;
}