* {
  margin: 0px;
  padding: 0px;
}

.welcome-section {
  background-color: black;
  height: 20vh;
  
}
header {
  
  display: flex;
  justify-content: space-between;
  

}

.logo-left {
  width: 250px;
}

.logo-right {
  margin-top: 25px;
}
.menu{
 
  display: flex;
  padding: 30px;
  list-style-type: none;
  
}

li{
  padding: 5px;
  color: white;
}



li a{
  color: white;
}

.banner {
  position: relative;
 
  
}

.banner img {
  width: 1300px;
  height: 700px;
  display: block;
  margin: 50px;
}

.banner h1 {
  position: absolute;
  top: 35%;           /* Center vertically */
  left: 23%;          /* Center horizontally */
  transform: translate(-50%, -50%); /* Exact center */
  color: rgb(63, 5, 95);       /* Or any color that stands out */
  font-size: 65px;/* Customize as needed */
  text-shadow: 2px 2px 5px rgba(0,0,0,0.7); /* Make text stand out */
}



.footer {
  
  bottom: 200px;
  width: 100%;
  height: 50%;
  padding: 10px;

  background-color: #f7f9f9; /* optional */
  text-align: center;
  color: black;
}

.team-links {
  display: flex;
  justify-content: center;
  gap: 220px; /* space between photos */
  flex-wrap: wrap; /* makes it responsive */
  margin-top: 20px;
  margin-bottom: 300px;
}
.team-title {
  text-align: center;
  font-size: 6rem;
  margin-top: 20px;
  color: blueviolet;
}
.team-links a {
  text-decoration: none;
  color: inherit;
  text-align: center;
}

.team-photo {
  width: 300px;
  height: 300px;
  border-radius: 50%; /* make it circular */
  object-fit:cover ;
  
}

.member-name {
  margin-top: 8px;
  font-size: 1rem;
}

.description h2 {
  
  margin-left: 10%;
  
  font-size: 60px;/* Customize as needed */
  color: rgb(7, 97, 97) ;
  text-shadow: 2px 2px 5px rgba(36, 124, 174, 0.7);
  
  text-align: center;
}

.description p {
  margin-left: 50%;
  margin-top: 2%;
  font-size: 20px;/* Customize as needed */
  text-shadow: 2px 2px 5px rgba(47, 60, 101, 0.7);
}