body{
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: rgb(57, 123, 134);
}
.winner{
    font-size: 28px;
    margin-bottom: 30px;
    margin-top: 10px;
    background-color: black;
    color: white;
}

h1{
    color: white;
    margin: 3px;
    margin-top: 5px;
}
.container{
    height: 63vh;
    width: 70vh;
    /* border: 1px solid black; */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.game{
    height: 60vh;
    width: 65vh;
    /* border: 1px solid black; */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    
}

.box{
    color: brown;
    font-size: 46px;
    height: 18vh;
    width: 18vh;
    margin: 5px;
    border-radius: 10px;
    background-color: rgb(202, 202, 41);
    border: none;
}

.resBtn{
    background-color: white;
    color: black;
    border-radius: 7px;
    padding: 0.5rem;

}
.newBtn{
    background-color: white;
    color: black;
    border-radius: 7px;
    padding: 0.5rem;

}
.hide{
    display: none;
}