*{
    margin: 0px;
    padding: 0px;
}

h1{
    color: #F9F3EF;
    text-shadow: black 1px 2px;
    margin-top: 20px;
}

body{
    background-color: #1B3C53;
    text-align: center;
}

.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: 2vmin;
}

.box{
    height: 18vmin;
    width: 18vmin;
    border-radius: 15px;
    border: none;
    box-shadow:  0 0 1rem rgba(0, 0, 0, 0.8);
    font-size: 13vmin;
    background-color: #D2C1B6;
}

#reset{
    padding: 1rem;
    border: none;
    box-shadow:  0 0 1rem rgba(0, 0, 0, 0.8);
    font-size: 1.5rem;
    border-radius: 15px;
    text-shadow: black 1px 2px;
    background-color: #DDA853;
    color:#F9F3EF; 
}

#Newgame{
    padding: 1rem;
    border: none;
    box-shadow:  0 0 1rem rgba(0, 0, 0, 0.8);
    text-shadow: black 1px 2px;
    font-size: 1.5rem;
    border-radius: 15px;
    background-color: #DDA853;
    color:#F9F3EF
}

p{
    color: #F9F3EF;
    font-size: 50px;
}

.fun-btn{
    display: flex;
    justify-content: space-evenly;
}

.hide{
    display: none;
}

.O{
    color:#1B3C53;
    text-shadow: black 1px 2px;
}

.X{
    color: #780C28;
    text-shadow: black 1px 2px;
}
