* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    color: aliceblue;
}

body {
   min-height: 100vh;
   background: url('atlantacity.jpg') no-repeat;
   background-size: cover;
   background-position: center;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    background: #602f6b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 24px;
    font-weight: 0;
    color: aliceblue; /* Adjust this based on your color scheme */
}

.logo-image {
    width: 60px; /* Adjust size as needed */
    height: auto;
    margin-right: 8px; /* Add some space between the image and the text */
}

.navbar a {
    position: relative;
    font-size: 18px;
    color: aliceblue;
    font-weight: 500;
    text-decoration: none;
    margin-left: 40px;
}

.navbar a::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 2px;
    background: aliceblue;
    transition: .3s;
}

.navbar a:hover::before {
    width: 100%;
}

/* Added top margin to the team container */
.team-section {
    padding: 60px 100px;
    margin-bottom: 20px;
  }
  
  .team-container {
    background: rgba(49, 1, 48, 0.7); /* Semi-transparent section background */
    padding: 40px;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap; /* Allows boxes to wrap */
    justify-content: center; /* Center the member boxes */
    gap: 40px;
    position: relative;
  }
  
  /* Section Title Inside Container */
  .section-title {
    width: 100%;
    text-align: center;
    color: aliceblue;
    font-size: 28px;
    margin-bottom: 20px;
    
    padding: 10px;
    border-radius: 8px;
  }
  
  /* Team Member Box Styling */
  .team-member {
    background-color: white; /* Box background */
    border-radius: 10px;
    overflow: hidden;
    width: 200px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
  }
  
  .team-member img {
    width: 100%;
    height: 150px;
    object-fit: cover;
  }
  
  .team-member h2 {
    font-size: 20px;
    margin: 10px 0;
    color: #602f6b;
    text-decoration: none;
  }
  
  .team-member p {
    color: #602f6b;
    margin-bottom: 10px;
    text-decoration: none;
  }
  .team-member p2 {
    color: #602f6b;
    margin-bottom: 20px;
    text-decoration: none;
  }
  
  .team-member:hover {
    transform: scale(1.05);
  }
  
  /* Footer Styling */
  footer {
    text-align: center;
    padding: 20px;
    background-color: #602f6b;
    color: white;
  }