body {
    background-color: #EBE200;
    margin: 0;
    font-family: Arial, sans-serif;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Voor een voetnoot die onderaan blijft */
}

header {
    margin: 0;
    padding: 0;
}

.header-image {
    max-width: 100%;
    height: auto;
}

.words {
    display: flex;
    justify-content: space-between;
    padding: 0 100px;
    margin: 20px 0;
}

main {
    flex: 1; /* Laat de hoofdinhoud de beschikbare ruimte innemen */
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-wrapper {
    display: flex;
    gap: 20px; /* Ruimte tussen de containers */
    background-color: #EBE200; /* Same yellow as the container */
}
.container {
    background-color: #EBE200 !important; /* Force yellow background */
    border: 0px solid #ccc;
    padding: 20px;
    max-width: 400px;
    flex: 1;
    text-align: left;
    box-sizing: border-box;
}


p {
    margin: 0;
}

footer {
    background-color: black;
    color: white;
    padding: 10px 0;
    position: relative; /* Voor een vaste positie */
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer a {
    color: #EBE200; /* Default color for footer links */
}
footer a:hover {
    color: red; /* Color on hover */
}

.footer-logo {
    margin-left: 20px; /* Ruimte tussen tekst en logo */
    height: 60px; /* Pas de hoogte aan naar wens */
}
/* Change default link color */ 
a { 
    text-decoration: none; /* Optional: Remove underline */ 
            }          


   /* Footer styling for mobile devices */
   @media (max-width: 768px) {
    .footer-content {
        display: flex;
        flex-direction: column; /* Stack items vertically */
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    footer a, .footer-logo {
        margin-bottom: 10px; /* Space between elements */
    }

    .footer-logo {
        margin-left: 0; /* Reset the margin for the logo */
    }
    .container-wrapper {
        flex-direction: column; /* Stack containers vertically */
        gap: 10px; /* Space between the stacked containers */
        background-color: #EBE200; /* Same yellow as the container */
    }
    .container {
        background-color: #EBE200 !important; /* Ensure yellow background for container */
        display: block; /* Ensure it's set to block */
    }


    .words {
        flex-direction: column; /* Stack words vertically */
        padding: 0; /* Adjust padding for mobile */
        margin: 10px 0;
    }
}