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

/* ***********************GLOBAL*********************** */
body {
  background-color: black;
}

.contenedor-principal {
  background-color: whitesmoke;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  cursor: crosshair;
}

a,
a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
  color: black;
}

/* ***********************ARRIBA*********************** */
.contenedor-arriba {
  height: 14vh;
}

/* ***********************CENTRO*********************** */
.contenedor-centro {
  /* height: 46vh; */
  /* height: auto; */
  text-align: center;
  display: flex;
  flex-flow: column wrap;
}

.logo img {
  width: 89%;
}

.subtitulos {
  display: flex;
  flex-flow: column wrap;
  margin: -5px auto;
  font-family: "Urbanist", sans-serif;
  font-family: "Google Sans Code", monospace;
  font-size: 0.7rem;

  li {
    margin: 14px 0px;
    list-style: none;
  }
}

.contenedor-discos {
  font-family: "Urbanist", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  margin: 2.5vh 0;
}

/* Animacion */
.variable {
  display: flex;
  justify-content: center;
  font-variation-settings: "wght" 275,
    "wdth" 50;
  animation: swapthings 3s infinite both cubic-bezier(0.17, 0.04, 0.04, 0.99);
}

.work {
  animation: swapthings2 3s infinite both cubic-bezier(0.17, 0.04, 0.04, 0.99);
}


@keyframes swapthings {
  0% {
    font-variation-settings: "wght" 275, "wdth" 50;
  }

  50% {
    font-variation-settings: "wght" 900, "wdth" 200;
  }

  100% {
    font-variation-settings: "wght" 275, "wdth" 50;
  }
}

@keyframes swapthings2 {
  0% {
    font-variation-settings: "wght" 900, "wdth" 200;
  }

  50% {
    font-variation-settings: "wght" 275, "wdth" 50;
  }

  100% {
    font-variation-settings: "wght" 900, "wdth" 200;
  }
}






/* ***********************FOOTER*********************** */
.contenedor-footer {
  background-color: black;
  display: flex;
  flex-flow: column nowrap;
  margin-top: 2vh;
  margin-bottom: -2px;
  text-align: center;
  padding: 0;

  a {
    color: whitesmoke;
  }
}

.divisor-footer {
  background-color: whitesmoke;
  height: 15px;
  width: 100vw;
  clip-path: polygon(0 100%, 100% 0, 0 0);
  margin-top: -2px;
}

.preguntas {
  ul {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-around;
    font-family: "Cal Sans", sans-serif;
    font-size: 0.8rem;
    padding-top: 10px;

    a:hover {
      text-decoration: overline;
    }
  }

  li {
    list-style: none;
    margin: 2px 0px;
  }
}

.contenedor-botones {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  margin: 0px 15vw;
  font-family: "Google Sans Code", monospace;
  font-size: 0.75rem;
}

.boton {
  border: solid whitesmoke 2px;
  border-top: none;
  border-bottom: none;
  margin: 7px;
  padding: 0.15rem 0.3rem;

  a:hover {
    /* background-color: rgba(245, 245, 245, 0.15); */
    text-decoration: overline;
  }
}

.sociales {
  background-color: black;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  margin-top: 10px;
  padding: 10px;
}

.redes {
  /* font-family: "Lexend Giga", sans-serif; */
  font-family: "Syncopate", sans-serif;
  font-size: 0.65rem;

  a:hover {
    text-decoration: underline;
  }
}

.copyright {
  color: whitesmoke;
  font-family: "Google Sans Code", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15rem;
  padding: 10px 0px;
}

/* ************** RESONSIVIDAD *************** */
/* ===== Tablet (mínimo 768px) ===== */
@media (min-width: 768px) {
  .contenedor-principal {}

  .contenedor-arriba {
    height: 26vh;
  }

  .logo img {
    width: 60%;
  }

  .subtitulos {
    font-size: 0.85rem;
  }

  .divisor-footer {
    height: 25px;
  }

  .contenedor-footer {
    /* height: 30vh; */
    /* padding-top: 40px; */
  }

  .preguntas ul {
    flex-flow: column wrap;
    justify-content: space-around;
    font-size: 0.9rem;
    padding: 30px 45px;
  }

  .contenedor-botones {
    /* background-color: rgb(73, 73, 73); */
    flex-flow: row nowrap;
    justify-content: space-between;
    margin: 0px 15vw;
  }

  .boton {
    /* margin: 15px; */
    padding: 0.15rem 0.3rem;
  }

  .sociales {
    justify-content: center;
  }

  .redes {
    margin: 0px 30px;
    font-size: 0.8rem;
  }
}

/* ===== Escritorio (mínimo 1024px) ===== */
@media (min-width: 1024px) {
  .contenedor-principal {}

  .contenedor-arriba {
    height: 13vh;
  }

  .logo img {
    width: 35%;
  }

  .subtitulos {
    font-size: 0.80rem;
    line-height: 1.15rem;

    li {
      margin: 20px 0px;
      list-style: none;
    }
  }

  .contenedor-discos {
    font-size: 0.95rem;
    letter-spacing: 0.4rem;
    padding-top: 2vh;
  }

  .divisor-footer {
    height: 20px;
  }

  .contenedor-footer {
    height: auto;
  }

  .preguntas {
    ul {
      flex-flow: row wrap;
      font-size: 0.9rem;
      padding: 0px 100px;
      margin-top: 15px;
    }

    li {
      margin: 0px 0px;
    }
  }

  .contenedor-botones {
    /* background-color  : rgb(49, 81, 129); */
    margin: 0px 20vw;
    /* margin-top: 15px; */
  }

  .boton {
    margin: 10px;
    padding: 0.5rem 1.5rem;
  }

  .sociales {
    padding-top: 0px;
  }

  .redes {
    margin: 0px 40px;
    font-size: 0.8rem;
  }

  .copyright {
    font-size: 0.75rem;
    letter-spacing: 0.25rem;
    padding-top: 20px;
  }
}

/* ===== Pantallas muy grandes (mínimo 1440px o 1600px) ===== */
@media (min-width: 1440px) {
  .contenedor-principal {}
}