*{
    margin: 0;
    padding: 0;
}
body{
    height: 100vh;
    background: linear-gradient(to top right,#05081c,#0a114e,#181f6d,#202dbf);
    color: white;
    font-family: 'Indie Flower', 'Comic Sans', cursive;
    text-align: center;
}
.game-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;
    box-shadow: 0 0 20px 5px rgba(189, 15, 137, 0.863),0 0 15px 5px rgb(255, 140, 0),0 0 10px 5px rgb(172, 40, 62);
}
.box{
    height: 20vmin;
    width: 20vmin;
    background-color: transparent;
    border: 2px solid white;
    color: white;
    font-size: 8vmin;
    font-family: 'Indie Flower', 'Comic Sans', cursive;
    transition: box-shadow .3s ease-in-out .1s;
}
.box:hover{
    box-shadow: 0 0 15px 4px whitesmoke;
}
#reset-btn{
    background-color: rgb(232, 8, 8);
    border: none;
    border-radius: .9rem;
    color: rgb(238, 232, 232);
    padding: 1rem;
    font-size: 1.2rem;
    transition: box-shadow .3s ease-in-out;
}
#reset-btn:hover{
    box-shadow: 0 0 8px 2px pink;
}
.win-msg{
    height: 100vmin;
    background-color: #753e7b;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
    color: #FFD700;
}
#msg-win{
    font-size: 2rem;
}
.draw-msg{
    height: 100vmin;
    background-color: rgb(0, 191, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
}
#msg-draw{
    font-size: 2rem;
}
.new-btn,.new-btn-draw{
    background-color: rgb(232, 8, 8);
    border: none;
    border-radius: .9rem;
    color: rgb(238, 232, 232);
    padding: 1rem;
    font-size: 1.2rem;
    transition: box-shadow .3s ease-in-out;
}
.new-btn:hover{
    box-shadow: 0 0 8px 2px pink;
}
.new-btn-draw:hover{
    box-shadow: 0 0 8px 5px white;
}
.hide{
    display: none;
}
#heading{
    text-shadow: 1px 1px 10px palevioletred;
}