body{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: hsl(202, 100%, 55%);
}
#myH1{
    font-size: 4rem;
    font-family: Arial, Helvetica, sans-serif;
    color: black;
    font-weight: bold;
}
#container{
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 5px solid;
    border-radius: 50px;
    padding: 30px;
    background-color: white;
}
#display{
    font-size: 5rem;
    font-family: monospace;
    font-weight: bold;
    color: hsl(0, 0%, 13%);
    text-shadow: 2px 2px 2px hsla(0, 0%, 0%, 0.75);
    margin-bottom: 25px;
}
#controls button{
    font-size: 1.5rem;
    font-weight: bold;
    padding: 10px 20px;
    margin: 5px;
    min-width: 125px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    color: white;
    transition: ease 0.5s;
}
#startBtn{
    background-color: hsl(120, 100%, 36%);
}
#startBtn:hover{
    background-color: hsl(120, 100%, 56%);
}
#stopBtn{
    background-color: hsl(0, 100%, 36%);
}
#stopBtn:hover{
    background-color: hsl(0, 100%, 56%);
}
#resetBtn{
    background-color: hsl(226, 100%, 33%);
}
#resetBtn:hover{
    background-color: hsl(226, 100%, 56%);
}

