/*.tataeti {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f8ff;
    color: #333;
    margin: 0;
}*/

.tateti {
    background-color: #c1afaf;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1 {
    color: #1d3557;
    margin-bottom: 10px;
}

#status {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #457b9d;
    font-weight: bold;
}

.board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 5px;
    width: 400px;
    height: 300px;
    margin: 0 auto 20px auto;
}

.cell {
    background-color: #eaf1f9;
    border: 2px solid #a8dadc;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3em;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cell:hover {
    background-color: #cce0e9;
}

/* Estilos específicos para las fichas */
.cell.X {
    color: #e63946; /* Rojo para X */
}

.cell.O {
    color: #457b9d; /* Azul para O */
}

#restartButton {
    background-color: #1d3557;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s;
}

#restartButton:hover {
    background-color: #0c1a2e;
}
@media (width < 750px) {
    .board {
        width: 95%;
    }
}