*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
width: 100%;
height: 100%;
background-color:rgb(68, 105, 95);
text-align: center;
margin-top: 100px;
}

h1{
    font-size: 50px;
}

.allBoxes{
    display: grid;
    grid-template-columns: repeat(3,120px);
    justify-content: center;
    margin-top: 30px;
    gap: 2px; 
}

.box{
    width: 120px;    
    height: 120px;
    cursor: pointer;
    font-size: 60px;
    color:black;
    background-color: #ffffc7;
    border-radius: 1rem; 
    border:1px black solid;
}

#resetBtn{
    margin-top: 40px;
    font-size: 30px;
    background-color: rgb(8, 5, 0);
    color: white;
    padding: 10px;
    border-radius: 1rem;
    border: none;
    cursor: pointer;
}

#status{
    margin-top: 20px;
    font-size: 30px;
    font-style: italic;
}

.win {
  background-color:rgb(162, 184, 119);
}

.o-color{
    color: rgb(80, 80, 123);
}

.x-color{
    color: rgb(124, 56, 56);
}