.profile-picture {
  width: 150px; /* Adjust size as needed */
  height: auto;
  border-radius: 50%; /* Makes the picture round */
  display: block;
  margin: 0 auto 1rem; /* Centers the picture and adds space below */
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
}

header, footer {
  text-align: center;
  padding: 1rem;
  background-color: #333;
  color: #fff;
}

nav {
  display: flex;
  justify-content: center;
  background-color: #555;
}

nav a {
  color: #fff;
  padding: 1rem;
  text-decoration: none;
}

nav a:hover {
  background-color: #333;
}

section {
  padding: 2rem;
}

h2 {
  color: #555;
}

footer p {
  margin: 0;
}
