html, body {
    margin: 0;
    overflow: hidden;
    background: #00b7ff;
    color: white;
    font-family: sans-serif;
    text-align: center;
}

canvas {
    display: block;
}

h1 {
    margin-top: 10%;
    font-size: 4em;
}

p {
    font-size: 1.5em;
}

button {
    display: block;
    margin: 10px auto;
    padding: 15px 40px;
    font-size: 1.5em;
    background: rgb(86, 86, 86);
    color: #0a90c5;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background: #cce;
}

a {
    text-decoration: none;
}

#tile {
    width: 100px;
    height: 100px;
    margin-top: 30px;
    image-rendering: pixelated;
}

#display {
    transition: opacity .3s;
}

.controlsDisplay {
    display: grid;
    grid-template-columns: auto auto;
    gap: 15px 40px;
    margin: 40px auto;
    width: fit-content;
    text-align: left;
}

.hotkey {
    background: white;
    color: #00b7ff;
    padding: 8px 16px;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 6px;
    text-align: center;
}

.explanation {
    font-size: 1.2em;
    display: flex;
    align-items: center;
}

.back {
    position: absolute;
    top: 20px;
    left: 20px;
    margin: 0;
}