body{
    background-image: url(images/pexels-photo-998641.jpeg);
    background-size: cover;
    background-position: center;
}

nav{
    display: flex; 
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
 }
 

 nav ul li{
     display: inline-block;
     list-style: none;
     margin: 10px 20px;
 }
 
 nav ul li a {
     text-decoration: none;
     color: #f0e9e9;
     font-size: 16px;
     font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     transition: color 0.3s ease, border-bottom 0.3s ease;
 }

 nav ul li a:hover {
    color: red; 
    border-bottom: 2px solid red; 
}

 img{
    top: -120px;
    left: -640px;
    width: 200px;
}

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

.project {
  border: 2px solid white;
  border-radius: 50px;
  display: flex;
  color: white;
  padding: 20px;
  width: 350px;
  height: 250px;
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s, box-shadow 0.3s;
}

.subtitle {
    font-size: 20px;
    font-weight: bold;
    color: #d32f2f; /* Red color */
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;

  }
  
.description p:first-child {
    font-size: 16px;
    color: white;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
  }

  .info-section {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: yellowgreen;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
  }
  
  .info {
    margin-left: 20px;
  }
  
  .date {
    margin-right: 20px;
  }

/* Hover effect for list items */
.project:hover {
    transform: scale(1.05); /* Slightly enlarge */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Enhanced shadow */
}

.project p{
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
}

.project img{
    width: 180px;
}
@media (max-width: 767px) {
  /* Navigation */
  nav ul {
      display: none; /* Hide the menu initially */
      flex-direction: column;
      align-items: center;
      background-color: rgba(0, 0, 0, 0.8);
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      z-index: 999;
  }

  nav ul.active {
      display: flex; /* Show menu when active */
      margin-left: -10%;
  }

  .menu-icon {
      font-size: 28px;
      color: white;
      cursor: pointer;
      display: block;
      text-align: right;
      position: relative;
      margin-left: 110px;
      right: 45%;
      top: 40px;

  }

  nav ul li {
      margin: 15px 0; /* Vertical spacing for menu items */
  }

  nav ul li a {
      font-size: 18px; /* Adjust font size for mobile */
  }

  .logo {
      width: 150px; /* Adjust for smaller screens */
      position: unset;
  }
      
  .titel{
      font-size: 12px;
      position: relative;
      top: 30px;
  }

  .projecten{
    padding: 40px !important;
  }
}