body {
    background-color: #222;
    color: #eee;
    margin: 0;
    padding: 0;
    overflow: hidden;
    transition: background-color 0.1s, color 0.1s;
}

body.button-pressed {
    background-color: #333;
    color: #eee;
}

#main-cont {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

#word-input {
    font-size: 5em;
}

.failed {
    color: #e22;
}

#footer {
    font-family: monospace;
    position: absolute;
    bottom: 0;
    left: 0;
}

.backtohome {
    position: absolute;
    top: 0;
    left: 0;
    font-family: monospace;
    font-size: 12px;
}

.backtohome a {
    color: unset;
    text-decoration: none;
}