
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #555;
}

header, footer {
    position: fixed;
    width: 100%;
    z-index: 10;
    background-color: #000;
    color: white;
    text-align: center;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


header {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    background-color: #000;
    color: white;
    text-align: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
padding: 0 1rem;
}

.logo img {
    height: 80px; /* Pas dit aan naar de gewenste hoogte */
    margin-right: auto; /* Logo blijft helemaal links */

}

.header-text {
    flex: 1;
    text-align: center;
    font-size: 1.5rem;
    font-weight:bold;
    color:#fff;
}


header {
    top: 0;
    height: 90px; /* Vaste hoogte voor de header */
}

footer {
    bottom: 0;
    height: 90px; /* Vaste hoogte voor de footer */
    display: flex;
    justify-content: center;
    align-items: center;
}

main {
    flex: 1;
    margin: 0;  /* Ruimte vrijmaken voor vaste header en footer */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    background-color: #111;
}

.content {
    max-width: 1200px;
    text-align: center;
    padding: 1rem;
    background: url("https://spel.ballpinnetje.nl/spel.jpg") no-repeat center center fixed;
    border: 5px solid #777;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


/* Hover-effecten */
.content-section:hover {
    background-color: #ffffff;
}

img.clickable:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 4px solid rgba(102, 191, 226, 0.767);
}

/* Verwijder onderstreping van links */
a {
    text-decoration: none;
    /* Geen onderstreping */
    color: inherit;
    /* Neem de tekstkleur van de parent over */
}


a:hover {
    color: #FFF;
    /* Houd de kleur gelijk aan de normale tekstkleur */
}
     #blog-container {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            position: relative;
            margin: auto;
            padding: 20px;
            padding-top: 90px; /* Houd rekening met de vaste headerhoogte */
            max-width: 1000px;
            background: rgba(0, 0, 0, 0.8);
            opacity: 0.98;
            border-radius: 5px;
            font-size: 17px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
            overflow-y: auto;
            height: calc(100vh - 105px);
            /* Dynamische hoogte: header 90px + footer 90px */
            box-sizing: border-box;
        }

  #game-area {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 580px;
    margin: 20px auto;
    background: rgba(255, 255, 255, 0.35);
    border: 2px solid #FFD700;
    border-radius: 12px;
    overflow: hidden;

}

#score,

#timer {
    position: absolute;
    top: 10px;
    font-weight: bold;
    color:#FFF;
}

#score {
    left: 12px;
}

#timer {
    right: 12px;
}

#banana {
    position: absolute;
    top: 50px;
    left: 150px;
    font-size: 34px;

}

#basket {

    position: absolute;
    bottom: 15px;
    left: 150px;
    font-size: 42px;
}

.game-buttons {
    text-align: center;
    margin-top: 15px;
}

.game-buttons button {

    padding: 10px 14px;
    margin: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
	touch-action: manipulation;

}

#game-message {

    text-align: center;
    font-weight: bold;
    margin-top: 15px;
}

.game-intro {
	color: #FF88EE;
}
    
  h1{
	  color:#FFD700;
  }     

[18:09, 14-06-2026] Ingo: /* =====================================

   MOBIEL - NORMALE TELEFOONS

   ===================================== */

@media screen and (max-width: 768px) {

    header,

    footer {

        height: 50px;

    }

    main {

        margin: 35px 0 50px 0;

        padding: 0;

    }

    #blog-container {

        width: 100%;

        max-width: 420px;

        margin: 0 auto;

        padding: 5px;

    }

    #game-area {

        width: 280px;

        height: 420px;

        margin: 10px auto;

    }

    .game-buttons {

        display: flex;

        justify-content: center;

        gap: 6px;

        flex-wrap: nowrap;

    }

    .game-buttons button {

        font-size: 16px;

        padding: 8px 10px;

    }

    #banana {

        font-size: 40px;

    }

    #basket {

        font-size: 40px;

    }

}

/* =====================================

   EXTRA KLEINE TELEFOONS

   ===================================== */

@media screen and (max-width: 360px) {

    #blog-container {

        max-width: 320px;

    }

    #game-area {

        width: 240px;

        height: 380px;

    }

    .game-buttons {

        gap: 4px;

    }

    .game-buttons button {

        font-size: 14px;

        padding: 6px 8px;

    }

    #banana {

        font-size: 34px;

    }

    #basket {

        font-size: 34px;

    }

}