.body-2 {
  /* z-index: 90;
  position: absolute; */
  /* top: 100vh; */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  height: 100vh;
  /* transform: translateY(-100vh); */
  /* animation: gradientBG 15s ease infinite; */
  background-color: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-image: url(../../../images/forest.jpg);
  background-size: cover;
  background-blend-mode: multiply;
  transition: 0.5s;
  /* background-size: 400% 400%; */
}

/* @keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
} */

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.splash-part-2 {
  background: linear-gradient(-45deg, #27ae60, #3c94e7, #23d5cc, #27ea60);
  background-size: 400% 400%;
  animation: gradientAnimation 15s ease infinite;
  padding: 20px;
  border-radius: 10px;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: auto auto;
  max-width: 800px;
  top: 0;
  bottom: 0;
  /* filter: blur(); */
}

.goal {
  text-align: center;
  padding: 20px;
  background: #e8f5e9;
  border-left: 10px solid #27ae60;
  margin-bottom: 20px;
  border-radius: 10px 10px 0 0;
}

.goal-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.goal-logo {
  aspect-ratio: 1;
  height: 4.5rem;
  /* filter: hue-rotate(30deg); */
  /* filter: drop-shadow(0px 0px 20px #00ffbf); */
}

.number-topic {
  text-align: left;
}

.goal-number {
  font-size: 2em;
  color: #27ae60;
  font-weight: bold;
  /* filter: drop-shadow(0px 0px 15px #00ffbf); */
}

.goal-topic {
  display: block;
  font-size: 1.5em;
  color: #27ae60;
  margin-top: 5px;
  /* filter: drop-shadow(0px 0px 15px #00ffbf); */
}

.goal-mission {
  display: block;
  color: #666;
  margin-top: 10px;
}

.group {
  background: #f0f4c3;
  padding: 15px;
  border-radius: 0 0 10px 10px;
  text-align: left;
}

.group-number {
  font-size: 1.2em;
  color: #827717;
  font-weight: bold;
}

.group-members {
  margin-top: 10px;
}

.member {
  padding: 10px 0;
  border-bottom: 1px solid #cfd8dc;
}

.role {
  font-weight: bold;
  color: #558b2f;
}

.name {
  display: block;
  color: #33691e;
  margin-left: 10px;
}
