body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
}

.background {
  background-color: #e5e4e0; /* hier jouw hex kleur */
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}


.container {
  display: flex;
  align-items: center;
  padding: 40px;
  max-width: 900px;
  width: 90%;
}

.profile-photo img {
  width: 400px;
  height: auto;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
  margin-right: 60px;
}



.content {
  max-width: 500px;
}

.small-image {
  width: 300px;
  height: auto;
  object-fit: contain;
  margin-bottom: 30px;
  /* box-shadow: 0 4px 12px rgba(0,0,0,0.3);  <-- Verwijderen */
  /* eventueel ook border verwijderen als die er is */
  border: none;
}





h1 {
  margin: 0 0 10px;
  font-size: 28px;
  color: #333;
}

p {
  margin: 0;
  font-size: 16px;
  color: #555;
}
