* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
}

.about-page {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f1f1f1;
}

.about-main {
  width: 80%;
  padding: 0 0.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-bg {
  background-image: url("assets/theme.jpg");
  background-repeat: repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  position: absolute;
  height: 100%;
  width: 100%;
}

.greeting-about {
  font-size: 2rem;
  color: #ec5242;
  padding: 5rem 0 0.5rem;
}

.headline-about {
  font-size: 3.5rem;
  font-weight: 900;
  color: #ec5242;
  text-align: center;
  padding: 0 0 1rem;
}

.short-description-about {
  padding: 2rem 0.8rem;
  color: #272a31;
  background-color: #fff;
  border: 2px solid #d3d3d3;
  z-index: 1;
}

.contact {
  color: #272a31;
  font-size: 1rem;
  padding: 2rem 0 0;
  text-align: center;
}

.history {
  width: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  z-index: 1;
}

.history h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #272a31;
  padding: 0 0 0.5rem;
}

.history hr {
  width: 5%;
  border: 1px solid #ec5242;
}

.history p {
  font-size: 1rem;
  color: #272a31;
  text-align: center;
  padding: 1rem 0 2rem;
  width: 80%;
}

.event {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.event .date {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

.event p {
  font-size: 1rem;
  width: fit-content;
  padding: 1rem 0 0 0;
  color: #fff;
}

.event-one,
.event-two {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.event-one {
  height: 45vh;
  background: linear-gradient(0deg, rgba(232, 117, 107, 0.687), rgba(233, 74, 74, 0.664)), url('assets/event-one-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}

.event-two {
  height: 45vh;
  background: linear-gradient(0deg, rgba(232, 117, 107, 0.687), rgba(233, 74, 74, 0.664)), url('assets/event-two-bg.jfif');
  background-repeat: no-repeat;
  background-size: cover;
}

@media all and (min-width: 768px) {
  .about-bg {
    height: 100%;
  }

  .greeting-about {
    display: none;
  }

  .headline-about {
    padding: 7rem 0 2.5rem;
  }

  .contact {
    line-height: 133%;
    padding: 2rem 0 3rem;
  }

  .event {
    width: 80%;
    flex-direction: row;
  }
}
