*{
    margin: 0;
    padding: 0;
}
body{
    background-color: rgb(235, 201, 158);
    text-align: center;

}
.container{
    height: 70vh; /*vh stands for viewport height.(1vh is equal to 1% of the viewport height.)*/
    display: flex;
        justify-content: center;
        align-items: center;
        
}
.game{
    height: 60vmin; /*vmin stands for viewport minimum(1vmin will be equal to 1% of the viewport height)*/
    width: 60vmin;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items:center ;
    gap: 1.5vmin;

}
.box{
    height: 18vmin;
    width: 18vmin;
    border-radius: 1rem;
    border: none;
    box-shadow:0 0 1rem rgba(0,0,0,0.1) ;
    font-size: 18vmin;
    color: maroon;
}
#button{
    padding: 1rem;
    font-size: large;
    background-color: black;
    color: white;
    border: 5rem;
    border: none;
}