@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;600&display=swap');

*{
    font-family: 'Open Sans', sans-serif;
}

body{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: rgb(177, 225, 255);
}

button{
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 2px solid #f08080;
    background-color: rgb(241, 214, 214);
    color: #f08080;
    font-size: 16pt;
    font-weight: 600;
    text-align: center;
}

button:hover{
    background-color: #efcbcb;
}

#contador{
    display: flex;


}

#numeroAtual{
    display: flex;
    align-items: center;
    margin: 0 20px;
    font-size: 16pt;
}