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

html {
  font-size: 62.5%;
}

body {
  background-image: url("../images/background_adimaro.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  font-family: sans-serif;
  text-align: center;
  margin: 0;
  background-color: #f0f0f0;
  overflow-y: hidden;
  display: flex;
  flex-direction: column;

}

.baskervville {
  font-family: "Baskervville", serif;
  font-weight: 400;
  font-style: normal;
}

header,
main,
section,
footer {
  width: 100%;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 96vh;
  padding-bottom: 2rem;
}

.logo {
  width: clamp(12.8rem, 25vw + 2rem, 35rem);
  height: clamp(12.8rem, 25vh + 2rem, 35rem);
  margin-top: clamp(3rem, 5vh + 3rem, 7.97rem);
}

.texto {
  font-size: max(2.4rem, 4.7vh + 1rem);
  padding-bottom: clamp(8rem, 10vh + 10px, 5rem);
  color: #000000;
  margin: 0 8rem;
}

.icones {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  gap: 2.1rem;
}

.icones img {
  width: clamp(1rem, 7vw + 5px, 4.6rem);
  height: clamp(1rem, 7vh + 5px, 4.6rem);
  margin: -30px 0 20px;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: clamp(4rem, 4vh + 10px, 6.5rem);
  position: sticky;
  bottom: 0;
  background-color: #474747;
  color: white;
  padding: 20px;
  gap: 6rem;
}

footer p {
  font-size: 1.2rem;
  color: #ffffff;
}

@media (max-width: 500px) {
  body {
    display: block;
    overflow-y: scroll;
  }

  .content {
    height: 100vh;
  }

  .texto {
    margin: 0 40px;
    font-size: max(2.4rem, 3vw + 2rem);
  }

  .logo {
    width: clamp(15rem, 25vw + 1rem, 20rem);
    height: clamp(19rem, 25vh + 1rem, 20rem);
    margin-top: clamp(2rem, 4vh + 1rem, 0.97rem);
  }

  .icones {
    width: 160px;
    margin: 0 auto;
  }

  .icones img {
    width: 30px;
    height: auto;
  }

  footer {
    position: static;
  }
}

@media (max-width: 600px) {
  .texto {
    margin: 0 40px;
    font-size: max(3.4rem, 3vw + 2rem);
  }

  .logo {
    width: clamp(19.7rem, 30vw + 4rem, 25rem);
    height: clamp(19.7rem, 30vh + 4rem, 25rem);
    margin-top: clamp(2rem, 5vh + 1rem, 0.97rem);
  }
}


@media (max-height: 600px) and (orientation: landscape) {
  body {
    display: block;
    overflow-y: scroll;
  }
  
    .content {
      height: 100vh;
    }

  .logo {
    width: clamp(12.8rem, 20vw + 2rem, 25rem);
    height: clamp(12.8rem, 20vh + 2rem, 25rem);
    margin-top: clamp(2rem, 5vh + 1rem, 0.97rem);
  }

  .texto {
    padding-top: 20px;
    font-size: max(2.4rem, 2vw + 1rem);
  }

  .icones {
    margin: 0 auto;
    padding: 0;
    gap: 1rem;
    width: 200px;
  }

  footer {
    position: static;
  }
}