
@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);
    height: 100vh;
}

button {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 2px solid lightcoral;
    background-color: rgb(241, 214, 214);
    color: lightcoral;
    font-size: 16pt;
    font-weight: 600;
    text-align: center;
}
.container {
    display: flex;
    flex-direction: column;    
    align-items: center;
    height: 80vh;
    justify-content: center;
}
#counter {
    display: flex;
}

#currentNumber {
    display: flex;
    align-items: center;
    margin: 0 20px;
    font-size: 16pt;
}
footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    
}
footer .description{
    font-weight: 700;
    align-items: center;
}
footer .social-media{
    display: flex;
    justify-content: center;
    background-color: rgb(220, 235, 245);
    width: 100vw;
    align-items: center;
    font-size: small;

}
footer .img{
    margin-left: 15px;
}
footer img{
    width: 20px;
    height: 20px;
}