/* 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;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

header {
    background-color: rgb(250, 215, 244);
    width: 100%;
    padding: 20px;
}

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: 10px 20px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    margin: 5px;
    cursor: pointer;
    text-shadow: 2px 2px #000000;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #8f5098;
}

h1 {
    color: rgb(254, 255, 255);
    text-shadow: 2px 2px #000000;
    text-align: center;
    margin-top: 20px;
}

p {
    color: black;
    text-shadow: 2px 2px white;
    text-align: justify;
    margin: 15px 20px;
    line-height: 1.5;
}

/* Afbeelding */
.images {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.images img {
    width: 90%; /* Zorgt dat de afbeelding zich aanpast aan het scherm */
    max-width: 300px; /* Behoudt een maximale breedte */
    height: auto; /* Houdt de verhouding intact */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

 /* 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 {
        display: flex;
        flex-direction: column; /* Navigatie in kolom */
    }
}
