body{
    background-color: teal;

}

.container{
    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: black;
    color: teal;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 3px 10px rgba(31, 30, 30, 0.342);
}

#count{
    font-size: 9rem;
    color:whitesmoke;
}
button{
    color: teal;
    border: 1px solid teal;
    background-color: black;
    padding: 6px;
    margin-right: 5px;
    border-radius: 5px;
    font-weight: bold;
}
button:hover{
    background-color: rgba(128, 128, 128, 0.363);
    transition: 0.5s;
}

