body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #2c3e50; /* Fondo negro */
    color: #fff; /* Texto blanco */
}

.container {
    text-align: center;
}

.card {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    grid-template-rows: repeat(3, 100px);
    gap: 10px;
    margin-bottom: 20px;
}

.cell {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #222; /* Fondo de las celdas oscuro */
    border: 2px solid #444; /* Borde más oscuro */
    border-radius: 50%; /* Hacer que las celdas sean circulares */
}

.red {
    background-color: red;
    border-radius: 50%; /* Hacer que el color también sea circular */
}

.blue {
    background-color: blue;
    border-radius: 50%;
}

.yellow {
    background-color: yellow;
    border-radius: 50%;
}

.green {
    background-color: green;
    border-radius: 50%;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #444; /* Botón oscuro */
    color: #fff; /* Texto del botón blanco */
    border: none;
    border-radius: 5px;
}

button:hover {
    background-color: #555; /* Cambio de color al pasar el cursor */
}
