body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 2rem;
  background-color: #fff;
  color: #222;
}

.profile-pic {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  object-fit: cover;
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.container {
  max-width: 700px;
  margin: 0 auto;
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 0.2rem;
}

.tagline {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

section {
  margin-bottom: 2rem;
}

h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

a {
  color: #007acc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  padding-left: 1.2rem;
}

footer {
  font-size: 0.9rem;
  color: #888;
  text-align: left;
  margin-top: 3rem;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
  /* Center the profile picture and adjust its size */
  .profile-pic {
    width: 180px; /* Adjust the width of the profile picture */
    height: 180px; /* Adjust the height accordingly */
    margin: 0 auto 1rem; /* Center the image and give it margin at the bottom */
    float: none; /* Remove the float */
    display: block; /* Make the image block-level so it centers */
  }

  /* Ensure the text is properly sized */
  h1 {
    font-size: 1.8rem; /* Slightly smaller font size for smaller screens */
  }

  .tagline {
    font-size: 1rem;
  }

  p {
    font-size: 0.95rem; /* Adjust the font size for readability */
  }

  footer {
    text-align: center; /* Center-align the footer on mobile */
  }

  /* Ensure the container uses full width on smaller screens */
  .container {
    width: 90%;
    padding: 1rem;
  }
}