*{
    margin: 0;
    padding: 0;
}
body{
    background-color: Maroon;
    text-align: center;
    color: White;
}   
.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: 1vmin;
}
.Box{
    height: 18vmin;
    width: 18vmin;
    border-radius: 1rem;
    border: none;
    box-shadow: 0 0 1rem black;
    font-size: 8vmin;
    color: black;
    background-color: white;
}
#reset{
    margin-top: 2rem;
    padding: 1rem 2rem;
    border-radius: 1rem;
    border: none;
    box-shadow: 0 0 1rem black;
    font-size: 5vmin;
    cursor: pointer;
}
#New-Game{
    margin-top: 2rem;
    padding: 1rem 2rem;
    border-radius: 1rem;
    border: none;
    background-color: black;
    box-shadow: 0 0 1rem blue;
    font-size: 2vmin;
    cursor: pointer;
    color: aliceblue;
}
#msg{
    color: red;
    font-size: 8vmin;

}
.msg-container{
    height: 30vmin;;
}
.hide{
    display: none;
    color: white;
}
