* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgb(106, 106, 106);
}

.content {
    margin: 0 auto;
    max-width: 1300px;
}

.container {
    background-color: #EBFEFF;
}

.hero-section {
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.text-content h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: rgb(85, 118, 147);
}

.text-content h1 {
    font-size: 2rem;
    font-weight: bold;
    color: black;
}

.text-content p {
    max-width: 500px;
    margin-bottom: 2rem;
}

.mijn-button {
    text-decoration: none;
    color: rgb(255, 255, 255);
    background-color: rgb(0, 229, 46);
    padding: 12px 30px;
    border-radius: 50px;
}

.text-content a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    background-color: rgb(85, 118, 147);
    padding: 12px 30px;
    border-radius: 50px;
}



.image-wrapper {
    width: 500px;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    gap: 50px;
}

.about-me-container {
    display: flex;
    background-color: rgb(139, 178, 204);
    justify-content: center;
    padding: 100px 0;
    gap: 50px;
}

.about-me-wrapper {
    max-width: 500px;
}

.about-me-wrapper h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: rgb(85, 118, 147);
}

.about-me-wrapper h1 {
    font-size: 2rem;
    font-weight: bold;
    color: black;
}

.projects-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding: 3rem 0;
    background-color: rgb(56, 144, 95);
}

.card-wrapper {
display: flex;
gap: 20px;
flex-wrap: wrap;
justify-content: center;
}

.card {
    background-color: rgb(134, 162, 186);
    border-radius: 20px;
    width: 300px;
}


.card p, .card h3 {
    padding: 10px 25px
}

.card img {
    width: 100%;
    height: 350px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    object-fit: cover;
}

html {
    scroll-behavior: smooth;
  }
 
 
 
  /* Add a black background color to the top navigation */
.topnav {
    background-color: #333;
    overflow: hidden;
  }
  
  /* Style the links inside the navigation bar */
  .topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }
  
  /* Change the color of links on hover */
  .topnav a:hover {
    background-color: #ddd;
    color: black;
  }
  .vakken {
    background-color: #8fa536;
    margin: 0 100px;
    padding-top: 50px;
    flex-wrap: wrap;
    
    /* dit is zodat het onder elkaar staat en je een gap kan toevoegen tussen de verschillende vakken / */
    display: flex;
    flex-direction: column;
    gap: 50px;
    border-radius: 25px;
}

.vak {
    /* / dit is zodat het plaatje links staat en de tekst rechts / */
    display: flex;
    gap: 100px;
    margin-left: 25px;
    margin-right: 100px;
    background-color: #3655a5;
    border-radius: 25px;

} 

.vak .text-content {
    margin-top: 20px;
}

.vak .image-wrapper {
    /* / hier pas je de grootte van het plaatje aan op basis van de breedte */
    width: 200px;
    border: #3d3a3a;
    object-fit: cover;
}

.vak .image-wrapper img {
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    /* object-fit: contain; */
    height: 100%;
    width: 100%;

}

.vakken .kopTekst {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}