*{
    margin: 0;
    padding: 0;
}
body{
    background-color: #fff4e4;
    text-align: center;
}
.heading{
    color: #dc6d18;
    margin-top: 4vh;
}
.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;
  
}
.box{
    height: 18vmin;
    width: 18vmin;
    border-radius: 1rem;
    border: none;
    font-size: 8vmin;
    color: #fff4e4;
    background-color: #2b1a12;

}
.reset-button{
    padding: 1rem;
    font-size: 1.25rem;
    background-color: #2b1a12;
    color: #fff4e4;
    border: none;
    border-radius: 0.5rem;
}
.new-Game-Btn{
    padding: 15px;
    padding-inline: 22px;
    font-size: 1.25rem;
    background-color: #2b1a12;
    color: #fff4e4;
    border: none;
    border-radius: 0.5rem;
    margin-bottom: 10px;
}
.msg-container{
    text-align: center;
    padding-bottom: 5vmin;
}
.msg{
    font-size: 20px;
    color: #dc6d18;
    font-weight: bold;
    padding: 2vmin;
}
.hide{
    display: none;
   
}