
/* Profile picture */
.profile-picture {
    width: 200px; /* Adjust the size as needed */
    height: auto;
    border-radius: 50%; /* Make it circular */
  }
  
  /* Passions section */
  #passions {
    margin-top: 2rem;
  }
  
  /* Social media buttons */
  #social-media {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* Contact form */
  #contact {
    margin-top: 2rem;
  }

/* Section-specific background colors */
main1 {
    background-color: #4a4545; /* Example color for the hero section */
  }
  
  #passions1 {
    background-color: #ff0505; /* Example color for the passions section */
  }
  
  #social-media1 {
    background-color: #40a363; /* Example color for the social media section */
  }
  
  #contact {
    background-color: #7d903c; /* Example color for the contact section */
  }

  main, section {

    min-height: 100vh; /* Ensure each section is at least the height of the screen */

    display: flex;
    flex-direction: column; /* Align items vertically */
    justify-content: center; /* Center vertically */
    align-items: center; /* Center horizontally */

  }
