/* Overall container */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-image: url('atlantacity.jpg'); /* Replace with the actual image path */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Keeps the background image in place even when scrolling */
  }
  .profile-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.5); /* More transparent white background */
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1; /* Ensures the content stays on top of the background */
  }
  
  /* Profile header */
  .profile-header {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #602f6b;
    color: white;
    border-radius: 8px;
    margin-bottom: 20px;
  }
  
  .profile-picture img {
    width: 160px;
    height: 270px;
  
    margin-right: 20px;
  }
  
  .profile-details h1 {
    margin: 0;
    font-size: 36px;
  }
  
  .profile-details h3 {
    margin: 5px 0 15px;
    font-size: 18px;
  }
  
  /* Profile content */
  .profile-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
  }
  
  .profile-content h2 {
    border-bottom: 2px solid #602f6b;
    padding-bottom: 5px;
    margin-bottom: 15px;
  }
  
  .profile-summary p {
    font-size: 16px;
    color: #333;
  }
  
  /* Button styling */
  .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #602f6b;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
  }
  
  .btn:hover {
    background-color: #4e2354;
  }
  