/* Algemene stijlen */
body {
    font-style: italic;
    background-image: url("images/depositphotos_505106924-stock-illustration-light-colorful-flat-background-triangles.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: rgb(250, 215, 244);
    padding: 12px;
    text-align: center;
}

h1 {
    color: rgb(0, 0, 0);
    text-align: center;
    text-shadow: 2px 2px #ffffff;
}

nav {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.Navbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.button {
    background-color: #b580b6;
    border: none;
    color: white;
    padding: 15px 20px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    margin: 5px;
    cursor: pointer;
    text-shadow: 2px 2px #000000;
    border-radius: 5px;
}

.Maincontent {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    gap: 20px;
}

.aboutMeStyle {
    background: #b580b6;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%; /* Responsief */
    padding: 10px;
    margin: 10px auto;
    border-radius: 5px;
}

.aboutme-tekst {
    text-align: center; /* Gecentreerd voor mobiele apparaten */
    color: white;
}

.images {
    max-width: 90%; /* Responsieve afbeelding */
    height: 500px;
    margin: 10px auto;
    border-radius: 10px;
}

.blokje {
    width: 90%;
    background: #b580b6;
    height: 100px;
    margin: 10px auto;
    border-radius: 5px;
}

/* Responsieve stijlen voor iPhones en kleinere schermen */
@media screen and (max-width: 768px) {
    body {
        font-size: 14px; /* Kleiner lettertype */
    }

    .button {
        width: 80%; /* Breder op kleinere schermen */
        font-size: 14px;
        padding: 10px;
    }

    .aboutMeStyle {
        width: 100%; /* Volledige breedte */
        padding: 15px;
    }

    .images {
        max-width: 100%; /* Past zich aan de schermbreedte aan */
    }

    nav {
        flex-direction: column; /* Navigatie in kolom */
    }
}

