*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 60px;
    background-color: rgb(88, 71, 71);
}

.container{
    display: flex;
    width: 500px;
    height: 520px;
    color: blueviolet;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 50px;
    background: #584747;
    box-shadow:  20px 20px 60px #4b3c3c,
    -20px -20px 60px #655252;
}

.contar{
    font-size: 5rem;
}


.buttons{
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

button{
    margin: 5px;
    width: 70px;
    height: 25px;
    cursor: pointer;
    font-size: 1.5rem;
    background-color: white;
    border: none;
    border-radius: 5px;
}

span{
    color: aqua;
}

.reset{
    width: 50px;
    height: 25px;
}
