/* Algemene stijlen */
body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    color: white;
    overflow-x: hidden;
    font-size: 2vw;
}

/* Header styling */
header {
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 50px;
}

.menu a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    transition: color 0.3s;
    font-size: 1.5vw;
}

.menu a:hover {
    color: #facc15;
}

/* Content styling */
.content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px; /* Smallere container */
    margin: 120px auto 50px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

h1,h2 {
    color: #facc15;
    font-size: 3vw;
}

/* Afbeeldingen responsief maken */
.image-container {
    width: 100%;
    max-width: 600px; /* Zorgt ervoor dat de afbeeldingen niet breder worden dan de content */
    margin: 20px auto;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsieve aanpassingen */
@media (max-width: 768px) {
    body,
    html {
        font-size: 4vw;
    }

    .container {
        flex-direction: column;
        align-items: center;
    }

    .menu a {
        margin: 10px 0;
        font-size: 4vw;
    }

    h1 {
        font-size: 5vw;
    }

    .content {
        max-width: 90%; /* Zorgt ervoor dat het nog iets kleiner is op mobiele schermen */
    }

    .image-container {
        max-width: 90%;
    }
}

/* Achtergrond styling */
body {
    background: linear-gradient(-45deg, #ffcc00, #f9aecd, #beb0ff, #beb0ff);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
