body main
{
    display: block;
    margin: 20px auto; /* Centraal uitlijnen met wat ruimte erboven en eronder */
    max-width: 80%; /* Zorgt dat de afbeelding niet te groot wordt */
    height: auto; /* Behoudt de verhoudingen van de afbeelding */
}
body main img {
    border: 2px solid #333; /* Optionele rand om de afbeelding */
    border-radius: 8px; /* Optionele afgeronde hoeken */
    width: 50%;
}
body main h2
{
    text-align: center;
    color: #333;
    margin-top: 20px;
}
/* Boxes: drie vakken naast elkaar */
.boxes {
    display: flex;
    gap: 20px;              /* ruimte tussen de vakken */
    justify-content: space-between;
    align-items: stretch;
    margin: 20px;
}

.box {
    flex: 1 1 30%;          /* elke box neemt beschikbare ruimte, min-breedte ~30% */
    min-width: 200px;      /* voorkomt te smalle boxes op kleine schermen */
    border: 1px solid #ffffff;
    padding: 16px;
    border-radius: 8px;
    background: rgba(255, 111, 0, 0.33);
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}