/* Reset estilos por defecto */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
html {
  font-family: "Verdana", sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.2;
  background-color: black;
  overflow:hidden;
}

body {
  height: 100vh;
}

h1,
h2,
h3,
p {
  margin: 0;
  font-weight: 400;
  color:rgb(90, 90, 90);
}

p {
  text-align: center;
  margin-top: -7%;
  font-size: 3vw;
}

a {
  text-decoration: none;
  color: white;
}

.coverPage {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100svh;
  width: 100vw;
  background-color: black;
  background-repeat: no-repeat;
  background-size: cover;
}

.logo {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

img {
  width: 100%; 
  max-width: 150%;
}

.text-gradient {
  color: transparent;
  background-image: linear-gradient(to right, rgb(75, 75, 75), rgb(90, 90, 90), rgb(150, 150, 150), rgb(200, 200, 200), rgb(120, 120, 120), rgb(75, 75, 75), rgb(25, 25, 25));    
  background-clip: text;
  animation: color 5s linear infinite;
  background-size: 500%;    
}

@keyframes color {
  from {
      background-position: 0% 50%;
  }

  to {
      background-position: 100% 50%;
  }
}


@media only screen and (max-width: 1023px) {
  .__coverPage-content {
    width: 100%;
  }

  .__coverPage-content h1 {
    font-size: 2.8rem;
  }

  .__coverPage-content h2 {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  .__coverPage-content h1 {
    font-size: 1.7rem;
  }

  .__coverPage-content p {
    font-size: 0.8rem;
  }

  .__coverPage-content h2 {
    font-size: 1.2rem;
    margin-bottom: 1em;
  }

  .__coverPage-content h3 {
    font-size: 0.9rem;
  }

  .__coverPage-content a {
    font-size: 0.8rem;
  }

}
