/* Timer display */
.stopwatch .timer {
    font-size: 150px;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 30px;
    line-height: 1em;
}
/* Buttons */
.stopwatch .buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.stopwatch button {
    font-size: 20px;
    padding: 10px 40px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
}
.stopwatch .start {
    background-color: var(--theme);
    color: white;
}
.stopwatch .reset {
    background-color: #ff4800;
    color: white;
}
@media screen and (max-width:1279px) {
    .stopwatch .timer {
        font-size: 16vw;
        line-height: 1em;
    }
}