body {
    font-family: "Arial", sans-serif;
    height: 100vh;
}

section {
    text-align: center;
}

h1 {
    text-shadow: 0 0 20px red;
    font-size: 50px !important;
}

.game-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 306px;
    margin: 0 auto;
}

.cell {
    font-family:Arial, Helvetica, sans-serif;
    width: 100px;
    height: 100px;
    box-shadow: 0 0 10px 1px #ff0000;
    border: 1px solid #333333;
    cursor: pointer;
    line-height: 100px;
    font-size: 60px;
    color: rgb(255, 255, 255);
    background-color: black;
}
.cell:hover {
    background-color: white;
    color: black;
    transition: 0.5s;
}
.cell.inactive:hover {
    background-color: black; /* Set the background color to the same as the default state */
    color: rgb(255, 255, 255);
    transition: 0.5s;
}
.game-restart {
    border-radius: 10px;
    font-size: 20px;
    background-color: red;
    color: white;
    border: none;
}
