html {
    background-color: black;
    color: hsl(0 0 50);
    font-family: ui-monospace, monospace;
    font-size: 28px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;

    padding-bottom: 6rem;

}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

#timerDisplay {
    font-size: 2rem;
    text-align: center;
    font-family: inherit;
}

#container {
    text-align: center;
}

.button {
    font-size: 3rem;
    display: inline-block;
    /*mix-blend-mode: multiply;*/
}

.button:hover {
    cursor: pointer;
}

.button:active {
    cursor: pointer;
    opacity: 0.6;
}

#timerReset {
    opacity: 0.6;
}