main {
  font-family: var(--font1);
  max-width: 100%;
  margin: 0 auto;
  padding: 10vh 0 0;
  padding-bottom: 10vh;
}

main p,
main label,
main input,
main select,
main textarea,
main button,
main option {
  font-family: var(--font2) !important;
  font-size: 1.6rem; /* Ajusta según tu estilo preferido */
  line-height: 1.4;
}

h1, h2, h3 {
  font-family: var(--font1);
}

header, footer {
  font-family: var(--font1);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.grayscale-hover {
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}

.grayscale-hover:hover {
  filter: grayscale(0%);
}

h1 {
  font-size: 10rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 15vh;
  margin-bottom: 15vh;
  color: var(--text);
  line-height: 1.3;
  text-align: center;
}

h2 {
  font-size: 4rem;
  font-weight: 400;
  text-transform:none;
  margin-top: 4vh;
  margin-bottom: 4vh;
  color: var(--text);
  line-height: 1.3;
  text-align: left;
}

h3 {
  font-size: 3.2rem;
  font-weight: 400;
  text-transform:none;
  margin-top: 4vh;
  margin-bottom: 4vh;
  color: var(--text);
  line-height: 1.3;
}

p {
  font-size: 1.8rem;
  line-height: 1.6;
  color: var(--text);
  text-align: left;
}

ul, ol, li {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--light-grey);
  font-size: 1.8rem;
  line-height: 1.6;
}

a {
  font-size: 1.8rem;
  color: var(--light-grey);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--white);
}

.button-wrapper {
  margin-top: 2rem auto;
  text-align: center;
}

.button-link {
  display: inline-block;
  background-color: var(--light-grey);
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--black);
  padding: .6rem .8rem;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;}

.button-link:hover {
  background-color: var(--dark-grey);
  color: var(--white);
}

@media (max-width: 768px) {
  main {
    max-width: 90%;
    padding: 8vh 0 10vh;
  }

  h1 {
    font-size: 3.5rem;
    padding-bottom: 20px;
  }

  h2, h3 {
    font-size: 1.5rem;
  }

  p {
    font-size: 1.3rem;
    line-height: 1.6;
  }

  /* ul, ol, li {
    font-size: 1.2rem;
    margin-left: 1rem;
  } */

  .parallax-image {
    position: static;
    transform: none !important;
  }
}

@media screen and (orientation: landscape) and (max-height: 500px) {
  h1 {
    font-size: 3.7rem;
    padding-bottom: 20px;
  }

    h2, h3 {
    font-size: 2.5rem;
  }

    ul, ol, li {
    font-size: 1.5rem;
  }
}

main ul,
main ol,
main li {
  font-family: var(--font2) !important;
  color: var(--light-grey);
  font-size: 1.6rem;
}
