body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #2c0e5c;
    color: white;
    text-align: center;
}

.container {
    margin: 20px auto;
    width: fit-content;
}

h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.info {
    display: flex;
    justify-content: space-between;
    margin: 10px auto;
    width: 400px;
    font-size: 1.2em;
}

.board {
    display: grid;
    grid-template-columns: repeat(7, 70px);
    grid-template-rows: repeat(6, 70px);
    gap: 5px;
    background-color: #44107e;
    padding: 10px;
    border-radius: 10px;
}

.cell {
    width: 70px;
    height: 70px;
    background-color: #1c004a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.cell.red {
    background-color: red;
}

.cell.yellow {
    background-color: yellow;
}

#restart {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1em;
    background-color: #ffcc00;
    border: none;
    border-radius: 8px;
    cursor: pointer;
} 

#restart:hover {
    background-color: #ffd633;
} 

.cell.filled {
    cursor: default;
    pointer-events: none;
}

