html, body {
    height: 100%; /* Ensures that the body takes the full viewport height */
    margin: 0; /* Removes default margin */
    display: flex; /* Enables flexbox layout */
    flex-direction: column; /* Stacks children elements vertically */
    font-family: 'Courier New', Courier, 'Lucida Sans Typewriter', 'Lucida Typewriter', monospace;
}

#content {
    color: #555;
    height: 30%;
}

#gravel, #output {
    color: #555;
    text-align: center;
    line-height: 50px;
    vertical-align: middle;
    width: auto;
    height: auto;
    font-size: 4em;
    font-weight: bold;
}

#countdown {
    color: #555;
    text-align: center;
    font-size: 2em;
    font-weight: bold;
    margin: 1em;
}

#textureLink {
    color: #555;
    text-decoration: none;
}
