@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    height:100vh;
    display: flex;
    justify-content: center;
    align-items: center;
font-family: 'Roboto', sans-serif;
}
/* total container design */
.container{
    width:40%;
    min-width:400px;
    background-color: #27373b;
    padding-bottom:60px;
    border-radius:10px;
    box-shadow: 0px 0px 5px black;
}
/* diplay design */
.display{
    width:100%;
    padding:40px 0px;
    background-color: #9e9e9e;
    color:white;
    font-size:4em;
    font-weight: 700;
    text-align: center;
    border-radius: 10px 10px 0px 0px;

}
.laps{
    color:white;
    text-align: center;
    margin-top:10px;
    text-decoration: none;
}
/* action button design */
.actions{
    text-align: center;
}
.actions button{
    padding:10px;
    font-size:20px;
    font-weight: 600px;
    margin:10px;
    width:150px;
    border-radius:10px;
    outline:none;
    border: 1px solid crimson;
    box-shadow:4px 4px 10px 2px black;
}
button:hover{
    background-color: black;
    border:2px solid white;
     color:white;
}
