@import "https://cdn.jsdelivr.net/npm/@fontsource/play@5.2.8/index.min.css";
    /*background-color: #f0d7a1;*/
    /*color: #000000;*/
    /*font-family: "Play";*/

/* Algemene stijl */
body {
    background-color: #F0D7A1;
    color: #000000;
    font-family: "Play", sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* Container */
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    padding: 2rem;
    width: 100%;
    box-sizing: border-box;
}

/* Kolommen */
.text-column,
.image-column {
    flex: 1 1 400px;
    text-align: center;
}

.text-column p {
    font-size: 2rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsief gedrag */
@media (max-width: 768px) {
    .container {
        flex-direction: column-reverse;
    }
}

/* Afbeelding */
img {
    max-width: 100%;
    height: auto;
}
