.settingsPanel {
    background-color: white;
    height: 60vh;
    padding: 10px;
}

.board {
    display: grid;
    gap: 10px;
    background-color: orange; 
    padding: 10px;
    margin: 10px;
    border-radius: 10px;
}

.boardContainer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cell {
    width: 5vw;
    height: 5vw;
    background-color: #fff; /* Blanco de las celdas vacías */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.message {
    font-size: 1.5rem;
    height: 20vh;
    font-weight: bold;
    color: orange;
}

@keyframes winnerBackground {
    0% { background-color: lightcoral; }
    25% { background-color: coral; }
    50% { background-color:violet ; }
    75% { background-color:fuchsia ; }
    100% { background-color: purple; }
}