body{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: azure;
}
h1{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 3rem;
    font-weight: bold;
    color: rgb(0, 0, 0);
}

#stopwatch-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 3px solid;
    border-radius: 30px;
    padding: 30px;
    background-color:whitesmoke;
}
#result{
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-weight: bold;
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 1px;
}
#btns button{
    border: none;
    font-size: 1rem;
    font-weight: bold;
    padding: 10px 20px;
    margin:5px;
    border-radius: 7px;
    color: white;
    cursor: pointer;
    transition: bacground-color 10s ease ;
}
#startbtn{
    background-color: rgb(46, 136, 46);
    
}
#startbtn:hover{
    background-color: rgb(93, 169, 93);

}
#stopbtn{
    background-color: rgb(220, 31, 31);

}
#stopbtn:hover{
    background-color: rgb(220, 31, 81);

}
#pasuebtn{
    background-color: rgb(35, 95, 145);

}
#pasuebtn:hover{
    background-color:  rgb(35, 95, 195);

}