* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f9;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  background-color: #ffffff;
  padding: 2rem;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.profile img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.profile p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-media {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-link {
  text-decoration: none;
  font-size: 1rem;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.social-link.linkedin {
  background-color: #0077b5;
}

.social-link.contact {
  background-color: #0077b5;
}

.social-link.overmij {
  background-color: #0077b5;
}

.social-link:hover {
  opacity: 0.8;
}
.social-link.portfolio {
  background-color: #0077b5;
}
