body{
    background-color: #F79AD3;
}

.container{
    border: 1px solid black; 

    width: 95%;
    height: 100vh;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.counter{
    border: 5px solid black;
    width: 600px;
    height: 350px; 
    margin: auto;
    padding: 25px; 
    text-align: center;
    background: #C86FC9;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.counter h1{
    font-size: 2rem;
}

#count{
    font-size:  9rem;
}