
*{
    margin: 0;
    padding: 0;
} 
body{
    background-color: #37718E;
    text-align:center;
}
.container{
    height: 70vh;
    display: flex;
    
    justify-content: center;
    align-items: center;
}
.game{
    height: 60vmin;
    width: 60vmin;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5vmin;
}
.btn{
    height: 18vmin;
    width :18vmin;
    border-radius: 1rem;
    border: none;
    font-size: 8vmin;
    color: #C33C54;
    background-color: white;
}
#reset-btn{
    padding: 1rem;
    font-size: 1.5rem;
    background-color: #254E70;
    border-radius: 1rem;
    border: none;
    color: white;

}

#newgamebtn{
    padding: 1rem;
    font-size: 1.5rem;
    background-color: #254E70;
    border-radius: 1rem;
    border: none;
    color: white;
}
#msg{
    color: #AEF3E7;
    font-size: 8vmin;
}
.msg-container{
    height: 100vmin;
    display: flex;
    justify-content: content;
    align-items: center;
    flex-direction: column;
    gap : 4rem;
}
.hide{
    display: none;
}