*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #119DA4;
}
#game h1{
    font-family: serif;
    font-weight: bold;
    font-size: 40px;
    color: rgb(77, 255, 0);

}
#playerName{
    padding: 10px;
}
#playerName input{
    padding: 10px;
    text-align: center;
    margin: 10px;
    border-radius: 1rem;
    border: none;
    font-size: 20px;
    color: black;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
}
#game{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}
.msg-container{
    font-family: cursive;
    font-size: 30px;
    font-weight: bold;

}
.box-container{
    background-color: #000000;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 400px;
    height: 400px;
    margin: 10px;
    border-radius: 1rem;
}
.box-container .box{
    background-color: #80817D;
    width: 100px;
    height: 100px;
    font-weight: bold;
    font-size: 70px;
    border-radius: 12px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
    color: white;
}
.new-game{
    background-color: #EDD5B7;
    padding: 10px;
    font-weight: bold;
    font-size: 30px;
    border-radius: 12px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
    border: none;
    margin: 5px;
}
.reset-game{
    background-color: #EDD5B7;
    padding: 10px;
    font-weight: bold;
    font-size: 30px;
    border-radius: 12px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
    border: none;
    margin: 5px;
}
button{
    cursor: pointer;
}
.hide{
    display: none;
}

.winner1{
  background-color: yellow;
  color: red;
  font-weight: bold;
}
