*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
      background-color: rgb(255, 255, 255);
  }
  
  .content {
      margin: 0 auto;
      max-width: 1300px;
  }
  
  .container {
      background-color: #ffffff;
      margin:  0 20px;
  }
  
  .hero-section {
      display: flex;
      height: 100vh;
      align-items: center;
      justify-content: center;
      gap: 50px;
  }
  
  .text-content h2 {
      font-size: 1.5rem;
      font-weight: bold;
      color: rgb(0, 98, 245);

  }
  
  .text-content h1 {
      font-size: 2rem;
      font-weight: bold;
      color: black;
  }
  
  .text-content p {
      max-width: 500px;
      margin-bottom: 2rem;
  }
  
  .text-content a {
      text-decoration: none;
      color: rgb(255, 255, 255);
      background-color: rgb(2, 75, 185);
      padding: 10px 30px;
      border-radius: 50px;
  }
  
  .image-wrapper {
      width: 500px;
  }
  
  .image-wrapper img {
      width: 100%;
      height: auto;
  }
  
  .about-me-container {
      display: flex;
      background-color: rgb(255, 250, 251);
      justify-content: center;
      padding: 100px 0;
      gap: 50px;
      margin: 0 20px;
  }
  
  .about-me-wrapper {
      max-width: 500px;
  }
  
  .about-me-wrapper h2 {
      font-size: 1.5rem;
      font-weight: bold;
      color: rgb(81, 7, 255);
  }
  
  .about-me-wrapper h1 {
      font-size: 2rem;
      font-weight: bold;
      color: black;
  }
  
  .projects-container {
      display: flex;
      flex-direction: column;
      gap: 40px;
      align-items: center;
      padding: 3rem 0;
      background-color: rgb(255, 255, 255);
  }
  
  .card-wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  }
  
  .card {
      background-color: rgb(177, 219, 255);
      border-radius: 20px;
      width: 300px;
  }
  
  
  .card p, .card h3 {
      padding: 10px 25px
  }
  
  .card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      /* links naar rechts, tweede getal is onder naar boven */
      border-top-left-radius: 20px;
      border-top-right-radius: 20px;
  }



  /* 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: #696666;
  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;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: hsl(158, 95%, 34%);
  color: white;
}


html {
    scroll-behavior: smooth;
  }


.vakken {
    background-color: rgb(177, 219, 255);
    margin: 0 100px;
    padding-top: 50px;
    
 
    /* 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;
    
    /* justify-content: center; */
    /* padding: 0 100px; */
    /* background-color: red; */
    margin-left: 25px;
    /* background-color: #04AA6D; */
}

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

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