*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}
body{
    font-family: 'Poppins',sans-serif;
    background-color: #24272E; 
}
.container{
    display: flex;
    flex-direction: column;
    align-items: center;
}
header{
    background-color: antiquewhite;
    padding: 20px;
    border-bottom: 5px solid black;
}
header h1{
    color: #24272E;
    text-align: center;
}
.board{
    margin-top: 100px;
    padding:0 20px 20px 20px;
    /* height: 600px;
    width: 360px; */
    background-color: antiquewhite;
    border-radius: 30px;
}
.board .info{
    margin: 10px 0 30px 0;
    display: flex;
    justify-content:space-around;
    font-size: 20px;
}
.reset{
    background-color: tomato;
    padding: 3px 10px;
    border-radius: 5px;
}
.reset:hover{
    cursor: pointer;
    color: white;
    background-color: rgba(255,99,71,0.8);
}
.grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: repeat(3,1fr);
    background-color: tomato;
    grid-gap:7px;
}
.cell{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    width: 100px;
    background-color:antiquewhite;
}
.cell:hover{
    cursor: pointer;
    background-color: rgba(250,235,215,0.8);
    transition: all 0.3s ease;
}
.cell p{
    color: #24272E;
    text-align: center;
    font-size: 80px;
}