.carousel-inner img {
  object-fit: cover;
  width: 100%;
}

.carousel-images {
  border-end-start-radius: 23px;
  border-end-end-radius: 23px;
  filter: blur(4px);
  user-select: none;
  opacity: 0.4;
}
.bg-opacity {
  background-color: black;
}

.hero-container {
  justify-content: center;
  position: absolute;
  text-align: center;
  margin-top: 123px;
  display: flex;
  width: 100%;
}

.hero-title {
  font-size: x-large;
  font-weight: 600;
  color: #ffffff;
}

.hero-subtitle {
  font-weight: 600;
  color: #ffffff;
  font-size: small;
  margin-top: 6px;
}

.rounded-nav {
  background-color: #5e5c5c;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  padding: 8px;
  display: flex;
  margin: auto;
}

.act-info {
  display: flex;
  gap: 12px;
  width: 100%;
  justify-content: space-between;
}
.act-img {
  height: 200px;
  width: 400px;
  border-radius: 12px;
}

.text-block {
  max-width: 450px;
}

.text-title {
  font-size: large;
  font-weight: 600;
}

.text-subtitle {
  font-size: small;
  margin-top: 12px;
}

.donate-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  margin-top: 50px;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.donate-button {
  background-color: #b4ec7d;
  border: solid #b4ec7d 2px;
}

.donate-button:hover {
  border: solid #b4ec7da9 2px;
  background-color: #b4ec7da9;
}


/* Responsiveness */
@media (min-width: 200px) and (max-width: 580px) {
  .act-info {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}



@media (min-width: 200px) and (max-width: 420px) {
  .act-img {
    height: 200px;
    width: 340px;
    border-radius: 12px;
  }
}

