.back-button {
  display: inline-block;
  margin-bottom: 20px;
  color: #40e0d0;
  text-decoration: none;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.back-button:hover {
  color: #ffffff;
}

body,
html {
  margin: 0;
  padding: 0;
  font-family: "Arial", sans-serif;
  height: 100%;
  overflow-x: hidden;
  background-color: #0a0a0a;
}

#vanta-bg {
  height: 100vh;
  width: 100vw;
}

.container {
  max-width: 100vh;
  margin: 0 auto;
  padding: 50px 20px;
}

h1 {
  text-align: center;
  color: white;
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h2 {
  text-align: center;
  color: white;
  font-size: 2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.team-card {
  background: rgba(29, 28, 28, 0.816);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding: 20px;
}

.team-card:hover {
  transform: translateY(-25px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.member-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
}

.member-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-name {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.member-position {
  color: #40e0d0;
  font-size: 0.9rem;
}
.member-social {
  color: darkgrey;
}

@media (max-width: 768px) {
  .events-grid {
    grid-template-columns: 1fr;
  }
}

#vanta-bg{
  position:static !important;
}
