/* Basis instellingen */
body {
    margin: 0;
    padding: 0;
    font-family: 'Francois One', sans-serif;
    background-color: #ffffff; /* Uit CSS-file.txt */
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Titels gebaseerd op jullie Readymag stijlen */
h1 {
    color: rgba(67, 89, 68, 1); /* Originele groene kleur */
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 20px;
}

h2 {
    color: rgba(67, 89, 68, 1);
    font-size: 30px;
    margin-top: 40px;
}

p {
    font-size: 20px;
    margin-bottom: 20px;
}

/* Bijschriften in Cabin Italic */
figcaption {
    font-family: 'Cabin', sans-serif;
    font-style: italic;
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

/* Secties */
section {
    padding: 100px 0;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background-color: #f4f4f4;
    text-align: center;
}

.break {
    background-color: rgba(67, 89, 68, 1);
    color: white;
    text-align: center;
}

blockquote {
    font-size: 35px;
    font-style: italic;
}

img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}