/* Algemene stijlen */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Header stijlen */
header {
  background-color: #333;
  color: #fff;
  padding: 20px;
  position: sticky;
  top: 0;
  z-index: 1;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav li {
  margin-left: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

/* Sectie stijlen */
section {
  padding: 40px 20px;
}

section h2 {
  text-align: center;
  margin-bottom: 20px;
}

.section-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.section-content > div {
  max-width: 500px;
  margin-bottom: 40px;
}

.bio {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.profile-pic {
  margin-bottom: 20px;
}

.profile-pic img {
  max-width: 300px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Overige CSS stijlen... */

.linkedin-logo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #0077B5;
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.linkedin-logo:hover {
  transform: scale(1.2);
}

/* Overige CSS stijlen... */