
/* Reset styles for all elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic styling for the entire page */
body {
    margin: 0;
    padding: 0;
    background: white;
    height: 100%;
}

/* Remove underline from all links */
a {
    text-decoration: none;
}

/* Styling for horizontal lines */
.horizontale-lijn {
    border-top: 1px solid black;
    width: 90%;
    margin: 0 auto;
    margin-top: 100px; /* Top margin for positioning */
}

/* Styling for links with underline */
.link-word {
    text-decoration: underline;
    font-weight: bold;
    color: black;
}


/* Animatie voor het verschijnen van elementen */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 1s ease forwards; 
}

/* Header section */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-family: "Montserrat", sans-serif;
}

.left {
    flex: 1;
}

.left a {
    font-size: 11px;
    font-weight: 500;
    text-decoration: none;
    color: black;
    margin-left: 20px;
    position: relative;
}

.left a::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -3px;
    left: -50px;
    width: 110px;
    height: 1px;
    background-color: black;
}

.left a::after {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: saddlebrown;
    border-radius: 50%;
    margin-left: 10px;
    position: absolute;
    bottom: 3px;
    right: -7px;
}

/* Navigation menu */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    margin-left: 80px;
}

nav li {
    margin-right: 40px;
}

nav a {
    font-size: 11px;
    font-weight: 500;
    text-decoration: none;
    color: black;
    position: relative;
    transition: color 2s;
}

nav a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0;
    background: black;
    height: 1px;
    transition: width 0.5s;
}

nav ul li a:hover {
    color: darkgray;
    z-index: 1;
}

nav ul li a:hover:after {
    width: 100%;
}

.right {
    flex: 1;
    text-align: right;
}

.right a {
    font-size: 11px;
    font-weight: 500;
    text-decoration: none;
    color: black;
    position: relative;
    transition: color 2s;
}

.right a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    background: black;
    height: 1px;
    transition: width 0.5s;
}

.right a:hover {
    color: darkgray;
}

.right a:hover:after {
    width: 100%;
}

/* Homepage section */
.Homepage-container {
    position: relative;
    margin-bottom: 200px;
    opacity: 1;
}

/* Title styling */
.titel {
    text-align: left;
    margin-left: 150px;
    margin-top: 100px;
    opacity: 0; 
    animation: fadeInUp 1s ease forwards 0.3s; 
}

.titel p {
    color: black;
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}

.titel h1 {
    color: black;
    font-size: 95px;
    font-family: "Alice", serif;
    font-weight: 400;
    font-style: normal;
    max-width: 500px;
}

/* Buttons styling */
.knoppen {
    text-align: left;
    margin-left: 230px;
}

.knop1, .knop2, .knop3 {
    font-family: "Montserrat", sans-serif;
    border-radius: 20px;
    cursor: pointer;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s; 
}

.knop1 {
    color: black;
    font-size: 10px;
    padding: 10px 25px;
    border: 1px solid black;
    background-color: transparent;
    margin: 5px;
}

.knop1:hover {
    transform: scale(1.1);
}

.knop2 {
    background-color: black;
    color: white;
    font-size: 10px;
    padding: 10px 25px;
    border: none;
    margin: 5px;
}

.knop2:hover {
    transform: scale(1.1);
}

.knop3 {
    color: black;
    font-size: 10px;
    padding: 10px 35px;
    border: 1px solid black;
    background-color: transparent;
    margin: 5px;
}

.knop3:hover {
    color: white;
    background-color: black;
}

/* Image and text styling */
.foto {
    position: relative;
    width: 290px; 
    height: auto;
    margin-left: 830px;
    margin-top: 40px;
}

.foto img {
    position: absolute;
    bottom: 0; 
    width: 100%;
    transform-origin: bottom right;
    transform: translateX(-50%); 
    border-left: 8px solid white; 
    border-right: 8px solid white; 
    border-top: 20px solid white; 
    border-bottom: 50px solid white; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

.foto-container img {
    width: 100%;
    transform: rotate(0deg);
}

.foto-container:nth-child(2) {
    transform: rotate(25deg); 
}

.foto-container:nth-child(3) {
    transform: rotate(12deg);
}

.bottom-text {
    position: absolute;
    bottom: 15px; 
    left: 0;
    right: 0;
    font-size: 18px; 
    color: black; 
    text-align: center;
    font-family: "Allura", cursive;
    font-weight: 400;
    font-style: normal;
}

.foto:hover img {
    transform: translateY(-20px);
}

.foto:hover .bottom-text {
    transform: translateY(-20px);
}

/* About me section */
.about-me-container {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 200px;
    opacity: 0; 
    animation: fadeInUp 1s ease forwards 0.9s; 
}

.about-me-text {
    width: 75%;
    margin-left: 180px;
    margin-bottom: 40px;
    font-family: "Montserrat", sans-serif;
}

.about-me-text h2 {
    color: black;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 40px;
}

.about-me-text p {
    color: black;
    font-size: 20px;
    font-weight: 100;
    padding: 20px;
    margin-bottom: 23px;
}

/* Learning outcomes section */
.learning-outcomes-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Montserrat", sans-serif;
    opacity: 0; 
    animation: fadeInUp 1s ease forwards 1.1s;
}

.titel2 {
    text-align: center;
    margin-bottom: 100px;
}

.titel2 h3 {
    display: inline-block;
    font-size: 18px;
    font-weight: 300;
}

.row {
    display: flex;
    justify-content: center;
    gap: 20px; 
    margin-bottom: 100px;
}

.Square {
    position: relative;
    width: 280px;
    height: 280px;
    background-color: white;
    display: flex;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    opacity: 0; 
    animation: fadeInUp 1s ease forwards 1.3s; 
}

.shutter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 100%; 
    background-position: center;
    opacity: 0; 
    transition: opacity 0.3s ease, background-size 0.3s ease;
}

.Square:hover .shutter {
    opacity: 1; 
    background-size: 120%; 
}

.Square h4 {
    font-size: 13px;
    font-weight: bold;
    color: black;
    font-weight: 300;
    text-decoration: none;
}

/*about-me section */

.unique-container {
    max-width: 1200px; 
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
}

.unique-header {
    text-align: left;
    margin-bottom: 20px;
}

.unique-title {
    margin: 0;
    font-size: 36px;
    font-weight: 200;
    font-family: "Alice", serif;
}

.unique-divider {
    margin-top: 10px;
    border: 0;
    border-top: 1px solid #000; 
    width: 100%; 
}


.unique-content {
    display: flex;
    align-items: flex-start;
}

.unique-profile {
    flex: 1;
    margin-right: 20px;
}

.unique-profile .unique-image {
    width: 470px;
    height: 600px;
}

.unique-about {
    flex: 3; 
    text-align: left;
    margin-left: 80px;
}

.unique-subtitle {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 10px;
    font-family: "Montserrat", sans-serif;
}

.unique-paragraph {
    margin-bottom: 10px;
    font-weight: 200;
    line-height: 1.6;
    font-family: "Montserrat", sans-serif;
}

.unique-button {
    display: inline-block;
    padding: 10px 40px;
    font-size: 16px;
    font-weight: 200;
    margin-top: 30px;
    color: black;
    background-color: white;
    border: 1px solid black;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

.unique-button:hover {
    background-color:black;
    color: white;
}



/* Interactive media section */

/* Page title styling */
.pagetitle {
    margin-top: 100px;
    text-align: center;
    position: relative;
}

.pagetitle h1 {
    font-size: 40px;
    font-weight: 300;
    font-family: "Alice", serif;
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

/* Dropdown menu wrapper */
  .dropdown-wrapper {
    display: inline-block;
    position: relative;
  }
  

  .dropdown-arrow {
    font-size: 24px;
    font-weight: 300;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px; 
  }
  
  
  .dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    width: 300px;
    text-align: left;
    border-radius: 10px;
  }
  
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    font-family: "Alice", serif;
    display: block;
  }
  
  .dropdown-content a:hover {
    background-color: #f1f1f1;
  }

  
  .dropdown-arrow.rotated {
    transform: rotate(90deg); 
    transition: transform 0.3s; 
  }
  

/* Ondertitel stijling */
.subtitle {
    margin-bottom: 20px;
    margin-top: 140px;
    margin-left: 130px;
    order: 1; 
}

.subtitle h1 {
    margin: 0;
    padding-bottom: 10px;
    font-size: 24px;
    font-weight: 300;
    font-family: "Montserrat", sans-serif;
}

/*Linkedinpost*/

/* Voorwoord sectie */
.voorwoord {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    margin-left: 130px;
    order: 2; 
}

.voorwoord-text {
    flex: 1;
    font-family: "Montserrat", sans-serif;
}

.voorwoord h1 {
    margin: 0;
    margin-top: 30px;
    padding-bottom: 5px;
    font-size: 20px;
    font-weight: 500;
}

.voorwoord p {
    margin: 0;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 350;
    line-height: 1.5;
    width: 90%;
}

/* Afbeeldingen container */
.afbeeldingen-container {
    display: flex;
    flex-direction: column;
    margin-right: 80px;
}

.voorwoord img {
    width: 500px;
    height: 220px;
    margin-top: 20px;
    margin-bottom: 40px;
}

/* Oriënteren sectie */
.oriënteren {
    display: flex;
    align-items: flex-start;
    margin-bottom: 100px;
    margin-left: 130px;
}

.oriënteren-text {
    flex: 1;
    margin-right: 20px;
    font-family: "Montserrat", sans-serif;
}

.oriënteren-text p {
    margin: 0;
    font-size: 16px;
    font-weight: 340;
    line-height: 1.5;
    margin-top: 20px;
    width: 80%;
}

.img-container {
    display: flex;
    gap: 20px;
    margin-right: 80px;
}

.oriënteren img {
    width: 250px;
    height: auto;
}

/* Inhoud tekst sectie */
.content-text {
    font-family: "Montserrat", sans-serif;
    line-height: 1.5;
    margin-left: 130px;
}

.content-text p {
    font-size: 16px;
    font-weight: 340;
    margin-bottom: 20px;
    margin: 0;
    width: 90%;
}

.content-text ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 80%;
}

.content-text li {
    font-family: "Montserrat", sans-serif;
    font-weight: 340;
    line-height: 1.5;
}

/* Boxen sectie */
.boxes {
    display: flex;
    margin-top: 100px;
}

.box {
    flex: 1;
    margin-left: 130px;
}

.left-box .text {
    margin-bottom: 80px;
    font-size: 16px;
    font-weight: 340;
    font-family: "Montserrat", sans-serif;
}

.versie1 h1 {
    font-size: 15px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
}

.versie1 img {
    width: 220px;
    height: 370px;
    border-radius: 5px;
    margin-left: 20px;
}

.versie2 h1 {
    font-size: 15px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
}

.versie2 img {
    width: 180px;
    height: 380px;
    border-radius: 5px;
    margin-left: 40px;
}

.img-left {
    margin-right: 20px;
}

.right-box .text-top,
.right-box .text-bottom {
    margin: 0 auto;
    font-family: "Montserrat", sans-serif;
    width: 95%;
    padding: 0;
    margin-right: 80px;
}

.text-top h1,
.text-bottom h1 {
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 10px;
}

.text-top p,
.text-bottom p {
    font-size: 16px;
    font-weight: 350;
    margin-bottom: 20px;
}

/* Knoppen container */
.button-container {
    display: flex;
    gap: 20px;
    margin-top: 70px;
}

.button-container button {
    padding: 15px 50px;
    border: none;
    border-radius: 5px;
    background-color: transparent;
    color: black;
    border: 1px solid black;
    font-family: "Montserrat", sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button-container button:hover {
    background-color: black;
    color: white;
}

/* Tekst container */
.text-container {
    display: flex;
    align-items: flex-start;
    margin-top: 80px;
    margin-bottom: 20px;
    order: 2; 
    flex: 1;
    margin-left: 130px;
    font-family: "Montserrat", sans-serif;
}

.text-container p {
    margin: 0;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 350;
    line-height: 1.5;
    width: 50%;
}

/* Knoppen sectie onderaan */
.botton {
    display: flex;
    margin-left: 130px;
}

.botton button {
    padding: 15px 50px;
    border: none;
    border-radius: 5px;
    background-color: transparent;
    color: black;
    border: 1px solid black;
    font-family: "Montserrat", sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
}

.botton button:hover {
    background-color: black;
    color: white;
}

.laptop {
    margin-top: 50px;
    margin-left: 150px;
}

.img-container2 {
    display: flex;
    gap: 200px;
    height: 300px;
    width: 300px;
}


/*portfolio website*/

.voorwoord2 {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    order: 2;
}
.voorwoord-text2 {
    flex: 1;
    margin-left: 130px;
    font-family: "Montserrat", sans-serif; 
}
.voorwoord2 h1 {
    margin: 0;
    margin-top: 30px;
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: 500;
}
.voorwoord2 p {
    margin: 0;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 350;
    line-height: 1.5;
    width: 80%;
}
.voorwoord-text2 ul {
    margin: 0;
    margin-bottom: 20px; 
    padding-left: 20px; 
    font-size: 16px;
    font-weight: 350;
    line-height: 1.5;
    width: 80%;
    color: blue;
    text-decoration: underline;
}

.img-boven,
.img-beneden {
    display: flex;
    flex-direction: column; 
    margin-bottom: 20px; 
    margin-top: 100px;
}

.img-boven img,
.img-beneden img {
    width: 250px;
    height: 150px;
    margin-right: 40px; 
    border: 2px solid white;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1); 
}

.img-boven {
    padding-bottom: 10px;
}






.oriënteren2 {
    display: flex;
    align-items: center; 
    margin-bottom: 100px;
    margin-left: 130px;
}
.oriënteren-text2 {
    flex: 1;
    font-family: "Montserrat", sans-serif; 
}

.oriënteren-text2 p {
    margin: 0;
    font-size: 16px;
    font-weight: 350;
    line-height: 1.5;
    margin-top: 20px;
    width: 85%;
}

.img-container3 {
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    margin-right: 40px;
}

.img-container3 img {
    width: 550px; 
    height: 330px;
}




.boxes2 {
    display: flex;
    flex: 1;
    margin-left: 110px;
}



.left-box2 {
    display: flex;
    flex-direction: column;
    width: 50%; 
    padding: 20px;
    font-family: "Montserrat", sans-serif; 
}

.text-top2 h1, .text-bottom2 h1 {
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 10px;
}
.text-top2 p, .text-bottom2 p {
    font-size: 16px;
    font-weight: 350;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.button-container2 {
    display: flex;
    gap: 20px; 
    margin-top: 40px; 
}

.button-container2 button {
    padding: 15px 50px;
    border: none;
    border-radius: 5px;
    background-color: transparent;
    color: black;
    border: 1px solid black;
    font-family: "Montserrat", sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button-container2 button:hover {
    background-color: black;
    color: white;
}




.right-box2 {
    display: flex;
    margin-top: 50px;
    margin-right: 40px;
    flex-direction: column;
    align-items: center;
    width: 40%; 
    font-family: "Montserrat", sans-serif; 
}

.text2 {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.versies2 {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.versie5, .versie6 {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    margin: 10px;
}

.versie5 img, .versie6 img {
    width: 100%;
    height: auto;
    max-width: 250px; 
    max-height: 550px; 
}

.versie5 h1, .versie6 h1 {
    font-size: 15px;
    font-weight: 350;
    margin: 0 0 10px 0;
    font-family: "Montserrat", sans-serif; 
}

.right-box2 > h1 {
    font-size: 15px;
    font-weight: 350;
    margin: 20px 0 10px 0;
    margin-top: 100px; 
    font-family: "Montserrat", sans-serif;
}

.right-box2 > img {
    width: 100%;
    height: auto;
    max-width: 500px; 
    max-height: 800px; 
    margin: 10px 0; 
}



/*Good&bad ux*/


.voorwoord3 {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    margin-left: 130px;
    order: 2;
}
.voorwoord3-text {
    flex: 1;
    font-family: "Montserrat", sans-serif; 
}
.voorwoord3 h1 {
    margin: 0;
    margin-top: 30px;
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: 500;
    
}
.voorwoord3 p {
    margin: 0;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 350;
    line-height: 1.5;
    width: 80%;
}

.afbeeldingen-container5 {
    display: flex;
    flex-direction: column; 
    margin-right: 80px;
}
.voorwoord3 img {
    width: 300px;
    height: 220px;
    margin-top: 50px;
    margin-bottom: 40px;
}



.content-text2 {
    font-family: "Montserrat", sans-serif;
    line-height: 1.5;
    margin-left: 130px;
}

.content-text2 p {
    font-size: 16px;
    font-weight: 350;
    margin-bottom: 200px;
    margin: 0;
    width: 90%;
}




.boxes3 {
    display: flex;
    margin-top: 100px;
}

.left-box3 {
    flex: 1;
    margin-left: 130px;
}

.versie7 h1 {
    font-size: 15px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 10px;
}

.versie8 h1 {
    font-size: 15px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 10px;
    text-align: left; 
    align-self: flex-start; 
}

.versie7 img,
.versie8 img {
    border-radius: 5px;
    margin-left: 20px;
}

.versie8 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.images-container {
    display: flex;
    justify-content: flex-start;
}

.images-container img {
    margin: 0 10px; 
}

.right-box3 {
    flex: 1;
    margin-right: 80px;
}

.text-top3 h1,
.text-bottom3 h1 {
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 10px;
}

.text-top3 p,
.text-bottom3 p {
    font-size: 16px;
    font-weight: 350;
    margin-bottom: 20px;
}

.button-container4 {
    display: flex;
    gap: 20px;
    margin-top: 70px;
}

.button-container4 button {
    padding: 15px 50px;
    border: none;
    border-radius: 5px;
    background-color: transparent;
    color: black;
    border: 1px solid black;
    font-family: "Montserrat", sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button-container4 button:hover {
    background-color: black;
    color: white;
}





/*paper prototype*/

.voorwoord4 {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    order: 2;
}
.voorwoord4-text {
    flex: 1;
    margin-left: 130px;
    font-family: "Montserrat", sans-serif; 
}
.voorwoord4 h1 {
    margin: 0;
    margin-top: 30px;
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: 500;
}
.voorwoord4 p {
    margin: 0;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 350;
    line-height: 1.5;
    width: 75%;
}


.voorwoord4 img {
    width: 350px;
    height: 470px;
    margin-top: 150px;
    margin-right: 90px;
}


.Usertest {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-family: "Montserrat", sans-serif; 
}

.afbeeldingen-container4 {
    display: flex;
    gap: 20px; 
    margin-left: 130px;
}

.afbeeldingen-container4 img {
    width: 270px;
    height: 420px;
    margin-top: 150px;
    margin-bottom: 200px;
}

.Usertest-text {
    margin-left: 110px; 
    flex: 1; 
}

.Usertest h1 {
    margin: 0;
    margin-top: 30px;
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: 500;
}

.Usertest p {
    margin: 0;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 350;
    line-height: 1.5;
    width: 90%; 
}

.button-container3 {
    display: block;  
    margin-top: 40px; 
}

.button-container3 a {
    display: inline-block;  
}

.button-container3 button {
    padding: 15px 50px;
    border: none;
    border-radius: 5px;
    background-color: transparent;
    color: black;
    border: 1px solid black;
    font-family: "Montserrat", sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button-container3 button:hover {
    background-color: black;
    color: white;
}





/*development*/

.voorwoord7 {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    margin-left: 130px;
    order: 2; 
}

.voorwoord7-text {
    flex: 1;
    font-family: "Montserrat", sans-serif;
}

.voorwoord7 h1 {
    margin: 0;
    margin-top: 30px;
    padding-bottom: 5px;
    font-size: 20px;
    font-weight: 500;
}

.voorwoord7 p {
    margin: 0;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 350;
    line-height: 1.5;
    width: 90%;
}

/* Afbeeldingen container */
.afbeeldingen-container6 {
    display: flex;
    flex-direction: column;
    margin-right: 80px;
}

.voorwoord7 img {
    width: 380px;
    height: 230px;
    margin-top: 20px;
    margin-bottom: 40px;
}



.java {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    margin-left: 130px;
    order: 2; 
}

.java-text {
    flex: 1;
    font-family: "Montserrat", sans-serif;
}

.java h1 {
    margin: 0;
    margin-top: 30px;
    padding-bottom: 5px;
    font-size: 20px;
    font-weight: 500;
}

.java p {
    margin: 0;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 350;
    line-height: 1.5;
    width: 90%;
}



/* Afbeeldingen container */
.afbeeldingen-container7 {
    display: flex;
    flex-direction: column;
    margin-right: 80px;
}

.java img {
    width: 380px;
    height: 230px;
    margin-top: 20px;
    margin-bottom: 40px;
}

.versioncontrol {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    margin-left: 130px;
    order: 2; 
}

.versioncontrol-text {
    flex: 1;
    font-family: "Montserrat", sans-serif;
}

.versioncontrol h1 {
    margin: 0;
    margin-top: 30px;
    padding-bottom: 5px;
    font-size: 20px;
    font-weight: 500;
}

.versioncontrol p {
    margin: 0;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 350;
    line-height: 1.5;
    width: 90%;
}

/* Afbeeldingen container */
.afbeeldingen-container6 {
    display: flex;
    flex-direction: column;
    margin-right: 80px;
}

.versioncontrol img {
    width: 400px;
    height: 250px;
    margin-top: 20px;
    margin-bottom: 40px;
}


/* OVP website*/

.voorwoord8 {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    margin-left: 130px;
    order: 2; 
}

.voorwoord8-text {
    flex: 1;
    font-family: "Montserrat", sans-serif;
}

.voorwoord8 h1 {
    margin: 0;
    margin-top: 30px;
    padding-bottom: 5px;
    font-size: 20px;
    font-weight: 500;
}

.voorwoord8 p {
    margin: 0;
    margin-bottom: 50px;
    font-size: 16px;
    font-weight: 350;
    line-height: 1.5;
    width: 90%;
}



/* Afbeeldingen container */
.afbeeldingen-container8 {
    display: flex;
    flex-direction: column;
    margin-right: 80px;
}

.voorwoord8 img {
    width: 380px;
    height: 230px;
    margin-top: 20px;
    margin-bottom: 40px;
}












/*Iterative design*/



/*soundspace*/

.voorwoord5 {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    order: 2;
}
.voorwoord5-text {
    flex: 1;
    margin-left: 130px;
    font-family: "Montserrat", sans-serif; 
}
.voorwoord5 h1 {
    margin: 0;
    margin-top: 30px;
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: 500;
    
}
.voorwoord5 p {
    margin: 0;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 350;
    line-height: 1.5;
    width: 90%;
}


.oriënteren4 {
    display: flex;
    align-items: flex-start;
    margin-bottom: 100px;
    margin-left: 130px;
}
.oriënteren4-text {
    flex: 1;
    margin-right: 20px;
    font-family: "Montserrat", sans-serif; 
}

.oriënteren4-text h1{
    margin: 0;
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: 500;
}

.oriënteren4-text p {
    margin: 0;
    font-size: 16px;
    font-weight: 350;
    line-height: 1.5;
    margin-top: 20px;
    width: 90%;
}





.stylescapes {
    display: flex; 
    margin-top: 100px;
    margin-bottom: 70px;
}

.stylescape {
    flex: 1;
    border-radius: 5px;
    margin-left: 130px;
}


.versie3 h1{
    font-size: 15px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
}

.versie3 h2{
    font-size: 15px;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
}

.versie3 img {
    width: 550px;
    height: 100px;
    border-radius: 5px;
    margin-left: 20px;
    margin-bottom: 80px
}

.versie4 h1 {
    font-size: 15px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
}

.versie4 h2 {
    font-size: 15px;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
}

.versie4 img {
    width: 550px;
    height: 100px;
    border-radius: 5px;
    margin-left: 20px;
}


.right-box3 {
   margin-bottom: 30px;
}


.right-box3 .text-top3 {
    font-family: "Montserrat", sans-serif;
    width: 80%;
}

.text-top3 p{
    font-size: 16px;
    font-weight: 350;
    margin-bottom: 20px;
}




.right-box3 .text-bottom3 {
    font-family: "Montserrat", sans-serif;
    width: 80%;
}


.text-bottom3 p{
    font-size: 16px;
    font-weight: 350;
}





.enquete {
    display: flex;
    align-items: flex-start;
    margin-bottom: 70px;
    order: 2;
}


.enquete-text {
    flex: 1;
    font-family: "Montserrat", sans-serif;
    line-height: 1.5;
    margin-left: 130px;
}

.enquete-text p {
    font-size: 16px;
    font-weight: 350;
    margin-bottom: 20px;
    width: 80%;
}

.enquete img{
    width: 500px;
    height: 250px;
    margin-right: 70px;
}





.colorpalet {
    display: flex;
    align-items: flex-start;
    margin-bottom: 100px;
    margin-left: 130px;
}
.colorpalet-text {
    flex: 1;
    margin-right: 20px;
    font-family: "Montserrat", sans-serif; 
}

.colorpalet-text p {
    margin: 0;
    font-size: 16px;
    font-weight: 350;
    line-height: 1.5;
    margin-top: 20px;
    width: 90%;
}



.colorpalet-img {
    display: flex;
    gap: 20px; 
    margin-right: 40px;
}

.colorpalet-img img {
    width: 250px; 
    height: auto;
    margin-top: 20px;
}

.colorpalet-img img.img-left {
    width: 450px; 
    height: 300px;
}


.visual {
    display: flex;
    align-items: flex-start;
    margin-bottom: 100px;
    margin-left: 130px;
}

.visual-img {
    display: flex;
    gap: 20px; 
    margin-right: 50px;
}

.visual-img img {
    width: 520px; 
    height: 200px;
}

.visual-text {
    flex: 1;
    margin-right: 50px;
    font-family: "Montserrat", sans-serif; 
}

.visual-text p {
    margin: 0;
    font-size: 16px;
    font-weight: 350;
    line-height: 1.5;
    margin-top: 20px;
    width: 85%;
}



.feedback {
    display: flex;
    align-items: flex-start;
    margin-bottom: 100px;
    margin-left: 130px;
}

.feedback-text {
    flex: 1;
    margin-right: 20px;
    font-family: "Montserrat", sans-serif; 
}

.feedback-text p {
    margin: 0;
    font-size: 16px;
    font-weight: 350;
    line-height: 1.5;
    margin-top: 20px;
    width: 80%;
}



.feedback-img {
    margin-top: 40px;
    display: flex;
    gap: 20px; 
    margin-right: 40px;
}

.feedback-img img {
    width: 650px; 
    height: 370px;
}





.aanpassing {
    display: flex;
    align-items: flex-start;
    margin-bottom: 100px;
    margin-left: 130px;
}

.aanpassing-img {
    display: flex;
    gap: 20px; 
    margin-right: 40px;
    flex-direction: column;
}

 

.aanpassing-text {
    flex: 1;
    margin-right: 20px;
    margin-left: 200px;
    font-family: "Montserrat", sans-serif; 
}

.aanpassing-text p {
    margin: 0;
    margin-bottom: 50px;
    font-size: 16px;
    font-weight: 350;
    line-height: 1.5;
    margin-top: 50px;
    width: 80%;
}



.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    margin-bottom: 100px;
    margin-left: 130px;
}

.container h1 {
    margin: 0;
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif; 
}

.container h2 {
    margin: 0;
    padding-bottom: 10px;
    font-size: 15px;
    font-weight: bold;
    font-family: "Montserrat", sans-serif; 
}

.container p {
    color: black;
    font-size: 16px;
    font-weight: 350;
    line-height: 1.5;
    margin: 10px 0;
    font-family: "Montserrat", sans-serif; 
}

.image-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
    margin-left: 100px;
}

.image-grid img {
    flex: 1;
    max-width: 90%;
    height: auto;
}

@media (max-width: 600px) {
    .image-grid {
        flex-direction: column;
    }
}




.photoshop {
    display: flex;
    align-items: flex-start;
    margin-bottom: 100px;
    margin-left: 130px;
}

.photoshop-text {
    flex: 1;
    margin-right: 20px;
    font-family: "Montserrat", sans-serif; 
}
.photoshop-text h1{
    margin: 0;
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: 500;
}

.photoshop-text p {
    margin: 0;
    margin-bottom: 50px;
    font-size: 16px;
    font-weight: 350;
    line-height: 1.5;
    margin-top: 20px;
    width: 80%;
}

.photoshop-button {
    display: block;  
    margin-top: 100px; 
}

.photoshop-button a {
    display: inline-block;  
}

.photoshop-button button {
    padding: 15px 50px;
    border: none;
    border-radius: 5px;
    background-color: transparent;
    color: black;
    border: 1px solid black;
    font-family: "Montserrat", sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
}

.photoshop-button button:hover {
    background-color: black;
    color: white;
}


.photoshop-img {
    margin-top: 40px;
    display: flex;
    gap: 20px; 
    margin-right: 200px;
    flex-direction: column;
}

.photoshop-img img {
    width: 300px; 
    height: 370px;
    margin-bottom: 20px;
}




/*portfolio website*/

.voorwoord6 {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    margin-left: 130px;
    order: 2;
}
.voorwoord6-text {
    flex: 1;
    font-family: "Montserrat", sans-serif; 
}


.voorwoord6 h1 {
    margin: 0;
    margin-top: 30px;
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: 500;
}



.voorwoord6 p {
    margin: 0;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 350;
    line-height: 1.5;
    width: 70%;
}

.voorwoord6-img {
    display: flex;
    flex-direction: column; 
    margin-right: 130px;
}



.begindesign {
    display: flex;
    align-items: flex-start;
    margin-bottom: 100px;
    margin-left: 130px;
}

.begindesign-img {
    display: flex;
    justify-content: space-around; 
    margin-top: 20px; 
}

.image-container {
    position: relative;
    margin-bottom: 20px; 
}

.overlay {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    color: white; 
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; 
    transition: opacity 0.3s ease; 
}

.overlay p {
    text-align: center; 
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
}

.image-container:hover .overlay {
    opacity: 1; 
}

 

.begindesign-text {
    flex: 1;
    margin-right: 20px;
    margin-left: 50px;
    margin-top: 200px;
    font-family: "Montserrat", sans-serif; 
}

.begindesign p {
    margin: 0;
    margin-bottom: 50px;
    font-size: 16px;
    font-weight: 350;
    line-height: 1.5;
    width: 90%;
}



.aanpassingen {
    display: flex;
    align-items: flex-start;
    margin-bottom: 100px;
    margin-left: 130px;
}

.aanpassingen-text {
    flex: 1;
    margin-right: 20px;
    margin-top: 180px;
    font-family: "Montserrat", sans-serif; 
}

.aanpassingen p {
    margin: 0;
    margin-bottom: 50px;
    font-size: 16px;
    font-weight: 350;
    line-height: 1.5;
    width: 85%;
}


.aanpassingen-img {
    display: flex;
    gap: 20px; 
    margin-right: 40px;
}

 






.gradient {
    display: flex;
    align-items: flex-start;
    margin-bottom: 100px;
    margin-left: 130px;
}


.gradient-img {
    display: flex;
    gap: 20px; 
}



.gradient-text {
    flex: 1;
    margin-left: 70px;
    font-family: "Montserrat", sans-serif; 
}

.gradient p {
    margin: 0;
    margin-bottom: 50px;
    font-size: 16px;
    font-weight: 350;
    line-height: 1.5;
    width: 85%;
}




.polaroid {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    margin-left: 130px;
}

.polaroid-text {
    flex: 1;
    margin-right: 20px;
    font-family: "Montserrat", sans-serif; 
}

.polaroid h1 {
    margin: 0;
    padding-bottom: 10px;
    font-size: 24px;
    font-weight: 500;
}

.polaroid p {
    margin: 0;
    margin-bottom: 50px;
    font-size: 16px;
    font-weight: 350;
    line-height: 1.5;
    width: 85%;
}


.polaroid-img {
    display: flex;
    gap: 20px; 
    margin-right: 40px;
}


.aanpassingen2 {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 100px;
    margin-left: 130px;
}
.aanpassingen2-text {
    flex: 1;
    margin-right: 20px;
    font-family: "Montserrat", sans-serif; 
}

.aanpassingen2 p {
    margin: 0;
    margin-bottom: 50px;
    font-size: 16px;
    font-weight: 350;
    line-height: 1.5;
    width: 90%;
}


.aanpassingen2-img {
    display: flex;
    gap: 100px; 
    margin-right: 40px;
    margin-left: 200px;
}




.feedback {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    margin-left: 130px;
}

.feedback-text {
    flex: 1;
    flex-direction: column;
    margin-right: 20px;
    margin-top: 50px;
    font-family: "Montserrat", sans-serif; 
}


.feedback p {
    margin: 0;
    margin-bottom: 50px;
    font-size: 16px;
    font-weight: 350;
    line-height: 1.5;
    width: 85%;
}


.feedback-img {
    display: flex;
    gap: 20px; 
    margin-right: 40px;
    margin-bottom: 100px;
}



/*ovp website*/

.voorwoord9 {
    display: flex;
    align-items: flex-start;
    margin-bottom: 100px;
    margin-left: 130px;
}

.voorwoord9-text {
    flex: 1;
    margin-right: 20px;
    font-family: "Montserrat", sans-serif; 
}

.voorwoord9-text h1 {
    margin: 0;
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: 500;
}

.voorwoord9-text p {
    margin: 0;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 350;
    line-height: 1.5;
    margin-top: 20px;
    width: 85%;
}

.voorwoord9-img {
    margin-top: 40px;
    display: flex;
    gap: 20px; 
    margin-right: 80px;
    flex-direction: column;
}

.voorwoord9-img img {
    
    margin-bottom: 20px;
}






/*businesscard*/


.voorwoord7 {
    display: flex;
    align-items: flex-start;
    margin-bottom: 100px;
    margin-left: 130px;
}

.voorwoord7-text {
    flex: 1;
    margin-right: 20px;
    font-family: "Montserrat", sans-serif; 
}

.voorwoord7-text h1 {
    margin: 0;
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: 500;
}

.voorwoord7-text p {
    margin: 0;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 350;
    line-height: 1.5;
    margin-top: 20px;
    width: 85%;
}

.voorwoord7-img {
    margin-top: 40px;
    display: flex;
    gap: 20px; 
    margin-right: 80px;
    flex-direction: column;
}

.voorwoord7-img img {
    width: 530px; 
    height:280px;
    margin-bottom: 20px;
}





.business-card1 {
    display: flex;
    align-items: flex-start;
    margin-bottom: 100px;
    margin-left: 130px;
}

.business-card1-img {
    display: flex;
    gap: 20px; 
    margin-right: 40px;
}

 

.business-card1-text {
    flex: 1;
    margin-right: 20px;
    font-family: "Montserrat", sans-serif; 
}

.business-card1 p {
    margin: 0;
    margin-bottom: 50px;
    font-size: 16px;
    font-weight: 350;
    line-height: 1.5;
    width: 85%;
}




.business-card2 {
    display: flex;
    align-items: flex-start;
    margin-bottom: 100px;
    margin-left: 130px;
}

.business-card2-img {
    display: flex;
    gap: 20px; 
    margin-right: 40px;
}

 

.business-card2-text {
    flex: 1;
    margin-right: 20px;
    font-family: "Montserrat", sans-serif; 
}

.business-card2 p {
    margin: 0;
    margin-bottom: 50px;
    font-size: 16px;
    font-weight: 350;
    line-height: 1.5;
    width: 85%;
}

.text-bottom4 {
    font-family: "Montserrat", sans-serif;
    width: 80%;
}

.text-bottom4 h1 {
    margin: 0;
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: 500;
    
}
.text-bottom4 p{
    font-size: 16px;
    font-weight: 350;
}



/* professional standard */


.voorwoord10 {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    margin-left: 130px;
    order: 2; 
}

.voorwoord10-text {
    flex: 1;
    font-family: "Montserrat", sans-serif;
}

.voorwoord10 h1 {
    margin: 0;
    margin-top: 30px;
    padding-bottom: 5px;
    font-size: 20px;
    font-weight: 500;
}

.voorwoord10 p {
    margin: 0;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 350;
    line-height: 1.5;
    width: 90%;
}



/* Afbeeldingen container */
.afbeeldingen-container9 {
    display: flex;
    flex-direction: column;
    margin-right: 80px;
}

.voorwoord10 img {
    width: 380px;
    height: 270px;
    margin-top: 20px;
    margin-bottom: 40px;
}

/*personal leadership*/

.voorwoord10 ul{
    margin: 0;
    margin-bottom: 0px;
    margin-left: 30px;
    font-size: 16px;
    font-weight: 350;
    line-height: 1.5;
    width: 90%;
}

/*projectx*/
.voorwoord11 {
    display: flex;
    flex-direction: column; 
    align-items: flex-start;
    margin-bottom: 20px;
    margin-left: 130px;
}

.voorwoord11-container {
    display: flex;
    flex-direction: row; 
}

.voorwoord11-text {
    flex: 1;
    font-family: "Montserrat", sans-serif;
    padding-right: 20px; 
}

.voorwoord11 h1 {
    margin: 0;
    margin-top: 30px;
    padding-bottom: 5px;
    font-size: 20px;
    font-weight: 500;
}

.voorwoord11 p {
    margin: 0;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
}

.voorwoord11-images {
    display: flex;
    flex-direction: column;
    margin-top: 100px;
}

.voorwoord11-images img {
    margin-bottom: 100px; 
    margin-right: 60px;
    height: 200px;
    width: 400px;
}


.versioncontrol-text2 {
    font-family: "Montserrat", sans-serif;
    margin-top: 20px;  
    flex: 1; 
    width: 80%;
}

.versioncontrol-text2 h1 {
    font-size: 20px;
    font-weight: 500;
    margin-top: 0; 
}

.versioncontrol-text2 p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.afbeeldingen-container6 {
    width: 400px; /* Breedte van de afbeelding */
    height: 200px; /* Hoogte van de afbeelding */
}


/*footer*/

footer {
    color: black;
    padding: 20px;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    margin-top: 100px; 
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Montserrat", sans-serif; 
}

.footer-text p {
    margin: 5px 0;
}

.icon {
    width: 20px; 
    height: 20px;
    transition: transform 0.3s ease, margin-top 0.3s ease; 
}

.icon:hover {
    transform: scale(1.2); 
    margin-top: -5px;
}

a {
    display: inline-block;
    margin: 5px;
}

