/* Algemene stijlen voor body */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Josefin Sans', sans-serif;
    box-sizing: border-box;
}

/* Container voor de achtergrondafbeelding */
.background {
    position: relative;
    min-height: 100vh;
    background: url('devriendenvanhetgoedeleven.jpg') repeat-y center center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Overleggende laag om de afbeelding lichter te maken */
.background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5); /* Verandert de transparantie voor meer of minder lichter maken */
    z-index: 1;
}

/* Content stijl */
.content {
    position: relative;
    z-index: 2; /* Zorgt ervoor dat de tekst bovenop de overlay wordt weergegeven */
    color: #333;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    max-width: 100%;
    overflow-y: auto; /* Voegt scrollbalk toe indien nodig */
}

/* Responsieve stijlen */
@media (max-width: 768px) {
    .content {
        padding: 10px;
    }
    
    .content h1 {
        font-size: 24px;
    }

    .content h2 {
        font-size: 20px;
    }	
    
    .content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .content h1 {
        font-size: 18px;
    }
    
    .content h2 {
        font-size: 14px;
    }

    .content p {
        font-size: 14px;
    }
}
