* {
  box-sizing: border-box;
}

/* Body styling */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9998rem;
  line-height: 1.5;
  background-color: #DCD7C9;
}

h1 {
  padding: 0%;
  margin: 0%;
  font-size: 70px;
  font-family: 'Euphoria Script', cursive;
}

.about-hero-1 p , .about-hero-2 p {
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 50.0002rem;
}

.about-hero-1 div, .about-hero-2 div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.about-hero-1 img, .about-hero-2 img {
  width: 100%;
  max-width: 31.2502rem;
  border-radius: 12px;
}

/* About hero 1 styling */

.about-hero-1 {
  background-color: #AFA090;
  padding: 1.5rem;
  text-align: center;
}


/* About hero 2 styling */
.about-hero-2 {
  background-color: #f2f2f2;
  padding: 1.5rem;
  text-align: center;
}


footer {
  margin: 1rem;
}

/*------------------------------------------*/

@media (min-width: 1024px) {
  /* Styles for desktop screens */

  .about-hero-1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    gap: 3%;
  }

  .about-hero-2 {
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .mission-written {
    padding-right: 10%;
  }

}


@media (max-width: 700px) {

  /* Your CSS rules for smaller screens go here */
  h1 {
    font-size: 42px;
  }

  .about-hero-1 p , .about-hero-2 p {
    font-size: 0.8rem;
  }
  .about-hero-1 {
    padding: 1rem;
  }

  .about-hero-2 {
    padding: 1rem;
  }
}