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

body {
  font-family: "Poppins", sans-serif;
  background-color: #f7f7df;
  width: 100%;
}

/* Default: show mobile, hide desktop */
.header__hero--desktop {
  display: block;
  width: 100%;
}

.header__hero--mobile {
  display: none;
  width: 100%;
}

section {
  padding: 5rem 10rem;
  width: 100%;
}

.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.h1 {
  font-size: 2rem;
  font-weight: 100;
  margin-bottom: 1rem;
  color: #00707f;
}

.p .highlight {
  font-weight: 900;
  color: #00243a;
}

.button {
  padding: 1rem 2rem;
  text-decoration: none;
  background-color: #00707f;
  color: white;
  border-radius: 3rem;
  transition: 0.5s all linear;
}

.button:hover {
  background-color: #00243a;
}

/* For screens 768px and above, show desktop image */
@media (max-width: 768px) {
  .header__hero--mobile {
    display: block;
  }

  .header__hero--desktop {
    display: none;
  }

  section {
    padding: 3rem;
  }

  .h1 {
    font-size: 1.5rem;
  }

  .about {
    text-align: justify;
  }

  .mobile {
    text-align: center;
  }
}
