/* Define your CSS styles here */
.container {
    text-align: center;
    max-width: 300px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

#grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 5px;
    background-color: #bbada0;
    padding: 10px;
    border-radius: 5px;
}

.grid-cell {
    width: 70px;
    height: 70px;
    background-color: #cdc1b4;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 70px;
    border-radius: 5px;
}

#score {
    font-size: 20px;
    margin-top: 10px;
}

#restart-button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 18px;
    background-color: #8f7a66;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#restart-button:hover {
    background-color: #6f5b4f;
}
