body{
    background-color: #1F2544;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    display: grid;
    place-items: center;
    margin-top: 170px;
}
.stopwatch{
    width: 280px;
    height:200px;
    padding: 10px;
    background-color: #7FC7D9;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #7FC7D9;
    border-radius: 20px;
}
h2{
    font-size: 50px;
    font-weight: 700;
}
/* Buttons */
.buttons{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap:10px;
}
.button{
    background-color: #7FC7D9;
    border: none;
}
#pause{
    padding:10px;
}
#play{
    padding:10px;
}
#reset{
    padding: 10px;
}