body {
    font-family: Arial, sans-serif;
    text-align: center;
}
.game--title {
    font-size: 100px;
    color: #ff0000;
    margin: 10px auto;
}
.game--container {
    display: grid;
    grid-template-columns: repeat(3, auto);
    width: 306px;
    margin: 10px auto;
}

.cell {
    width: 100px;
    height: 100px;
    line-height: 100px;
    border: 1px solid #ccc;
    font-size: 36px;
    cursor: pointer;
    position: relative;
}

.cell:hover {
    background-color: #f0f0f0;
}

.cell.x::before {
    content: 'X';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: blue; /* Change color of X */
}

.cell.o::before {
    content: 'O';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: red; /* Change color of O */
}

.game--status {
    font-size: 24px;
    margin-top: 10px;
}

.game--restart {
    background-color: #e8e8e8;
    width: 200px;
    height: 50px;
    font-size: 25px;
    color: #ff0000;
    box-shadow: 2px 2px 2px 2px #d86c23;
    border: 2px solid #d86c23;
}
