body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #013220; /* Donkergroene achtergrondkleur */
    margin: 0;
    padding: 0;
    color: white;
    height: 100vh; /* Zorg ervoor dat de achtergrond 100% van de viewport bedekt */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Verticaal centreren */
    align-items: center; /* Horizontaal centreren */
}

.game-container {
    max-width: 500px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparante achtergrond */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5); /* Contrast */
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 kolommen */
    gap: 10px;
    margin: 20px auto; /* Centreer de grid horizontaal */
    justify-content: center; /* Gaten gecentreerd */
    align-items: center; /* Gaten verticaal gecentreerd */
}

.hole {
    width: 100px; /* Breedte van gaten */
    height: 120px; /* Hoogte van gaten */
    background-color: #333333; /* Donkergrijze binnenkant */
    position: relative;
    border-radius: 50px 50px 0 0; /* Afgeronde bovenkant */
    overflow: hidden; /* Voorkom dat mollen buiten gaten komen */
    border: 5px solid #5a3a28; /* Randkleur behouden */
    box-shadow: inset 0px 5px 15px rgba(0, 0, 0, 0.6); /* Diepte-effect */
}

.mole {
    width: 80px;
    height: 80px;
    background-size: cover; /* Zorg ervoor dat de afbeelding past */
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 120%; /* Beginpositie: buiten het gat */
    left: calc(50% - 40px); /* Horizontaal gecentreerd */
    transition: top 0.3s; /* Soepele overgang */
}

.mole.green {
    background-image: url('https://i.imgur.com/LN5Cm2Z.png'); /* Groene vraagteken */
}

.mole.red {
    background-image: url('https://i.imgur.com/t3haIp2.png'); /* Rode vraagteken */
}

.mole.white {
    background-image: url('https://i.imgur.com/po2V6Iy.png'); /* Witte vraagteken */
}

.mole.show {
    top: 10%; /* Zichtbaar maken */
}

button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 5px; /* Ruimte boven de knop */
}

button:hover {
    background-color: #218838;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 5px; /* Ruimte tussen knoppen */
    margin-top: 20px;
}

.info-container {
    text-align: center; /* Centreer de tekst */
    margin-top: 10px; /* Ruimte boven de uitleg */
}

.score-row {
    display: flex; /* Gebruik flexbox om items naast elkaar te plaatsen */
    justify-content: center; /* Centreer de items horizontaal */
    gap: 15px; /* Ruimte tussen de items */
    margin-top: 5px; /* Ruimte tussen de titel en de scores */
}

.info-item {
    font-size: 14px; /* Compacte tekstgrootte */
    text-align: center;
    margin: 0;
    padding: 0;
}