img {
  width: 100%;
}

section {
  h2 {
    margin: auto;
    color: #DD241B;
    text-decoration: underline;
    margin-bottom: 10px;

    font-size: 30px;
  }
}


/* Cover Image */
.cover-image-section {
  width: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
}

/* Image Carousel */
.image-carousel-section {
  display: flex;
  justify-content: center;
}

.image-carousel-container {
  position: relative;
}

.image-carousel-1 {
  width: 100%;
}

.slogan {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  position: absolute;
  top: 3%;
  left: 3%;
  
  width: 23%;
  height: 17%;
  border-radius: 12% / 20%;
  background-color: rgba(216, 169, 4, 0.82);

  font-size: 14px;
  color: #A46009;
}

/* About Us */
.about-us-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;

  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
}

.about-us-image-container {
  display: flex;
  justify-content: center;
}

.about-us-image {
  width: 75%;
}

.about-us-text-button-container {
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 20px;
  p {
    font-size: 14px;
    font-weight: bold;
    color: #AC7A3B;
    margin-bottom: 20px;
    text-align: center;
  }
}

.about-us-button-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.about-us-button {
  font-size: 26px;
  padding: 10px 20px;
  border-radius: 28px;
  border: none;
  background-color: #AC7A3B;
  color: #FFF3D9;
}

.about-us-button:hover {
  opacity: 0.9;
  cursor: pointer;
}

.about-us-button:active {
  opacity: 0.6;
}

/* Schedule */
.schedule-section {
  display: flex;
  flex-direction: column;
}

.schedules-container {
  display: flex;
  flex-direction: column;
  width: 100%;

  img {
    width: 100%;
    height: 100%;
  }
}


/* Donations */
.donations-section {
  display: flex;
  flex-direction: column;
  background-color: white;
  width: 100%;
  margin-bottom: 0;
}

/* Responsiveness */
@media only screen and (min-width: 700px) {
  .slogan {
    font-size: 26px;
  }

  section {
    h2 {
      font-size: 50px;
    }
  }

  .about-us-text-button-container {
    p {
      font-size: 20px;
    }
  }

  .donations-container {
    display: flex;
    justify-content: center;
    img {
      width: 40%;
    }
  }
}

@media only screen and (min-width: 1200px) {
  main {
    section {
      width: 60%;
    }
  }

  .cover-image-container {
    width: 60%;
  }

  .slogan {
    font-size: 40px;
  }

  section {
    h2 {
      font-size: 60px;
    }
  }

  .schedules-container {
    flex-direction: row;
  }
}
