

/* Container die alles centreert */
.container {
    text-align: center;
    margin: 0 auto;
    padding: 20px;
}

/* Centrale titel */
.main-title {
    margin-bottom: 40px;
    font-size: 36px;
    font-weight: bold;
}

/* Layout voor de twee blokken */
.floors {
    justify-content: center;
    gap: 40px;
}

/* Opmaak voor elk blok */
.floor-block {
    text-align: center;
    padding-top: 5px;
}

.floor-block h2 {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: bold;
}

.floor-block p {
    margin-bottom: 20px;
    font-size: 16px;
}

/* Afbeeldingen */
.floor-block img {
    width: 100%;
    height: auto;
    /* border-radius: 8px; */
}
@media screen and (min-width: 750px)
{
    .description {
        margin: 0 10%;
    }

    .floors {
        display: flex; 
    }

    .floor-block {
        flex: 1;
        max-width: 45%;
    }
}