/* /styleVar2.css/ */
@import url("https://fonts.googleapis.com/css2?family=MonteCarlo&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Tangerine:wght@400;700&display=swap");

.tangerine-regular {
  font-family: "Tangerine", cursive;
  font-weight: 400;
  font-style: normal;
}

.tangerine-bold {
  font-family: "Tangerine", cursive;
  font-weight: 700;
  font-style: normal;
}

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.montecarlo-regular {
  font-family: "MonteCarlo", cursive;
  font-weight: 400;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
}

.hidden{
  display: none;
}

#gaia-trigger {
  cursor: pointer;
}

body {
  background: radial-gradient(circle, #f1e9de 1%, #cbb6a1 10%, #a48364 40%);
  background-position-x: 0%;
  background-position-y: 0%;
  background-size: auto;
  height: 100vh;
  background-position: 0% 65%;
  background-size: 100% 225%;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: space-between;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

main img {
  height: 15rem;
  margin: 3rem 0;
  position: relative;
  z-index: 10;
}

h1 {
  font-size: 4.5rem;
}

h3 {
  font-size: 2.5rem;
}

footer {
  padding: 2.8rem 1rem 1rem;
  display: flex;
  flex-direction: column;
}

.linkFooter {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}

h2 {
  font-size: 2.7rem;
  text-decoration: underline;
}

a {
  font-size: 1.9rem;
  color: black;
}

a:nth-child(2) {
  align-self: flex-end;
  font-size: 1.7rem;
}

@media screen and (min-width: 1024px) {
  main img {
    height: 20rem;
  }

  h1 {
    font-size: 7rem;
  }

  h3 {
    font-size: 4rem;
  }

  footer {
    flex-direction: row;
    align-self: end;
    align-items: center;
    padding: 2rem;
  }

  h2 {
    font-size: 4rem;
    text-decoration: none;
  }

  .linkFooter {
    flex-direction: row;
    align-items: center;
  }

  .linkFooter a {
    font-size: 2.5rem;
    text-decoration: none;
  }
  .linkFooter a:nth-child(2) {
    font-size: 2.2rem;
    text-decoration: none;
  }
}
