/* body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f0f0f0;
} */

#game-board {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    grid-template-rows: repeat(3, 100px);
    gap: 10px;
    margin: 0 auto;
    max-width: 330px;
    position: relative;
}

.mole {
    width: 100px;
    height: 100px;
    background-color: #8b4513;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}

.mole.active {
    background-color: #ff6347;
}