*{
    margin: 0;
    padding: 0;
}
body{
    background-color: #ffb703;
    text-align: center;

}
h1{
    font-size: 50px;
    color: blue;
    text-shadow: 0 0 5px #000;
}
.container{
    height: 80vh;
    width: 80vmin;
     display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    left: 450px;
    top: -10px;
}
.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: 30px;
    box-shadow: inset 0 0 10px #000;
   font-size: 70px;
   color: rgb(255, 0, 0);
   background-color: #fff;
}
.Reset{
    padding: 15px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    background-color: #2c2a2a;
    border-radius: 10px;
    border: none;
}
#msg{
    font-size: 40px;
    color: #fff;
    font-weight: 600;
}
.newBtn{
    padding: 20px;
    font-size: 25px;
    color: #fff;
    background-color: #000;
    border-radius: 10px;
}
.hide{
    display: none;
}
.msg-container{
    height: 30vmin;
}
.footer {
    position: absolute;
    bottom: 40px;
    right: 20px;
    font-size: 1.5rem;
    opacity: 0.7;
    color: #ff0318;
    font-weight: 900;
  }
  
  .footer span {
    font-size: 2rem;
    color: #9b59b6;
  }
  