/* General */
body {
    font-family: 'Arial', sans-serif;
    text-align: center;
    background: #ffebcd;
    color: #333;
    margin: 0;
    padding: 20px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

/* Score and Timer */
p {
    font-size: 1.2em;
}

/* Buttons */
button {
    padding: 10px 20px;
    margin: 10px;
    font-size: 1em;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color: #ff6b6b;
    color: white;
    transition: transform 0.2s;
}

button:hover {
    transform: scale(1.1);
}

/* Grid styling */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    grid-gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

/* Holes */
.hole {
    width: 100px;
    height: 100px;
    background-color: #654321;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: inset 0 0 10px #000000aa;
}

/* Mole */
.mole {
    width: 80px;
    height: 80px;
    background-color: #ffcc00;
    border-radius: 50%;
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    animation: pop-up 0.3s forwards;
}

/* Pop-up animation */
@keyframes pop-up {
    to {
        bottom: 10px;
    }
}