* {
    padding: 0;
    margin: 0;
}

html {
    background-color: black;
    color: white;
    font-family: 'Courier New', Courier, monospace;
    font-size: 10em;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

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

button {
    padding: 10px;
    border-style: solid;
    border-width: 1px;
    /* border-color: white; */
    font-family: 'Courier New', Courier, monospace;
    background-color: white;
    color: black;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

button:hover {
    background-color: grey;
}

#adorno {
    font-size: 0.2em;
    text-align: center;
    width: 60%;
    line-height: 120%;
    color: black;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.button-container {
    margin-bottom: 90px;
    height: auto;
}