/* Container for the header content */
.header-content {
  display: flex;
  align-items: center; /* Vertically center the items */
  justify-content: flex-start; /* Align the title and image at the left */
  position: relative;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Title styling */
.header-content .title {
  font-size: 2.5rem; /* Adjust this size as needed */
  color: white; /* White text color */
  margin: 0;
  padding-right: 20px; /* Space between title and image */
}

/* Profile picture container */
.profile-picture-container {
  position: relative;
  width: 200px;
  height: 200px;
}

/* Profile picture styling */
.profile-picture {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
}
