*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #3C3C3C;
}

.stopwatch{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    row-gap: 100px;
}

#time{
    font-size: 55px;
    color: white;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 600;
}

.controls{
    display: flex;
    column-gap: 100px;
}

button{
    background-color: #5F6368;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    width: 100px;
    height: 40px;
    border-radius: 20px;
}

button:hover{
    transform: scale(1.1);
    background-color: #5F6368cc;
}
