html, body {
    height: 100%;
    margin: 0;
    padding: 0;
  }
  
  body {
    color: #ffffff;
    background: #1A212D;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
  }
  
  header {
    text-align: center;
    padding: 50px 0;
    background: #2D3748;
    color: #ffffff;
  }
  
  header p {
    color: #ffffff;
  }
  
  h1 {
    font-size: 32px;
    margin-bottom: 10px;
  }
  
  p {
    font-size: 16px;
    line-height: 1.5;
  }
  
  .header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #2D3748;
  }
  
  .header-text {
    color: #ffffff;
    text-align: center;
    margin-bottom: 10px;
  }
  
  .header-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
  }
  
  .header-icons a {
    color: #ffffff;
    font-size: 24px;
    text-decoration: none;
  }
  
  .header-divider {
    width: 3px;
    height: 50px;
    background-color: #677FEB;
    margin: 0 20px;
  }

  .avatar {
  width: 100px; 
  height: 100px; 
  /*border-radius: 50%; To make it circular */
  margin-right: 10px; /* Adjust the spacing as needed */
}

  .certificates {
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 30px;
    padding: 50px 0;
  }
  
  .certificate {
    flex: 0 0 300px;
    margin: 15px;
    border: 3.5px solid #677FEB;
    padding: 20px;
    border-radius: 15px;
    background-color: white;
  }
  
  .certificate h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #667FEA;
  }
  
  .certificate h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #667FEA;
  }

  .certificate p {
    font-size: 16px;
    color: #667FEA;
  }
  
  .certificate .divider {
    border-top: 1px solid #677FEB;
    margin-top: 10px;
    margin-bottom: 15px;
  }
  
  .timeline {
    margin: 30px auto;
    max-width: 600px;
  }
  
  .timeline-item {
    position: relative;
    padding-bottom: 30px;
  }
  
  .timeline-item::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    width: 3px;
    height: 100%;
    background: #677FEB;
  }
  
  .timeline-item:last-child::before {
    height: 50%;
  }
  
  .timeline-date {
   font-size: 14px;
   font-weight: bold;
   margin-bottom: 10px;
   margin-left: 20px;
  }


  
  .timeline-content {
    margin-left: 20px;
    padding-left: 20px;
    border-left: 2px solid #677FEB;
  }
  
  .verleden-timeline {
  margin-bottom: 30px;
}

.heden-timeline {
  margin-top: 30px;
}
  
  footer {
    background: #2D3748;
    padding: 20px 0;
    text-align: center;
    color: white;
    font-size: 14px;
  }

  .section-title {
    color: #728197;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    padding: 50px 0;
  }
  .section-divider {
    border-top: 1px solid #ffffff;
    padding: 50px 0;
  }



/* Linked in*/
.linkedin-card {
background: #fff;
border: 1px solid #e1e1e1;
border-radius: 5px;
margin: 20px;
padding: 20px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.linkedin-post-header {
display: flex;
align-items: center;
margin-bottom: 10px;
}

.profile-picture {
width: 50px;
height: 50px;
border-radius: 50%;
margin-right: 10px;
}

.linkedin-post-user h3 {
font-size: 18px;
font-weight: bold;
margin: 0;
}

.linkedin-post-user p {
color: #728197;
margin: 0;
}

.linkedin-post-content {
font-size: 16px;
line-height: 1.5;
}

/* Styles for the optional image */
.optional-image img {
width: 100%; 
height: auto; 
margin-top: 20px; 
}




.linkedin-cards {
display: flex;
flex-direction: column;
align-items: center;
margin: 30px auto;
max-width: 900px;
}

.linkedin-card {
flex-basis: 100%;
margin: 20px;
padding: 20px;
background-color: #2D3748;
border: 3.5px solid #677FEB;
border-radius: 15px;
box-sizing: border-box;
position: relative;
}

  /* Media queries for responsiveness */
  @media (max-width: 768px) {
    .linkedin-card {
      flex-basis: calc(50% - 20px);
    }
  }

  @media (max-width: 480px) {
    .linkedin-card {
      flex-basis: 100%;
    }
  }


/* LinkedIn Post link */
.linkedin-link {
position: absolute;
right: 15px;
margin: 10px;
}

.linkedin-link a {
text-decoration: none;
color: #677FEB;
font-size: 24px;
}


