@import url('https://fonts.googleapis.com/css2?family=Julee&family=Roboto:ital,wght@1,300&display=swap');

*,
*:before,
*:after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background-color: #91918f;
}
.container{
    background-color: #D3756B;
    width: 40%;
    min-width: 500px;
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    padding: 20px 0;
    padding-bottom: 50px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.333);

}
.timer-display{
    position: relative;
    width: 92%;
    background-color: #F0997D;
    left: 4%;
    font-family: 'Julee', cursive;
font-family: 'Roboto', sans-serif;
    color: #7b0909;
    font-size: 30px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(65, 5, 145, 0.25);
}
.buttons{
    width: 90%;
    margin: 60px auto 0 auto;
    display: flex;
    justify-content: space-around;
}
.buttons button{
    width: 120px;
    height:45px ;
    background-color: #B5D5C5;
    color: rgb(0, 0, 0);
    border: none;
    font-family: 'Julee', cursive;
font-family: 'Roboto', sans-serif;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
}
.buttons button:nth-last-child(2){
    background-color: #fdbdbd;
}
.buttons button:nth-last-child(1){
    background-color: #FCFFA6;
}
.buttons button:hover{
    box-shadow: 0 0 20px rgb(116, 114, 114);
    ;
}
