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

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

main {
  background-color: #333;
}

#imagen-inicio {
  height: 100%;
  display: flex;
  justify-content: center;
  padding: 0;
}

#h1-inicio {
  background-color: #333;
  font-size: 45px;
  padding: 8px;
  text-align: center;
  transition: transform 0.5s linear;
}
#h1-inicio:hover {
  transform: scale(1.2);
}

h1 {
  margin: 1px;
  color: white;
  font-size: 45px;
  padding: 8px;
  text-align: center;
  transition: transform 0.5s linear;
}
h1:hover {
  transform: scale(1.2);
}

h2 {
  margin: 1px;
  color: white;
  font-size: 45px;
  padding: 8px;
  text-align: center;
  transition: transform 0.5s linear;
  font-size: 20px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  padding: 10px;
  align-items: center;
  background-color: #020203;
}
h2:hover {
  transform: scale(1.2);
}

.h2-varios {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: azure;
  text-shadow: 2px 2px 4px steelblue;
}

header {
  height: auto;
}

.navbar- {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #333;
  padding: 15px 30px;
  height: auto;
}

.nav-links- {
  list-style: none;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  transition: transform 0.7s ease;
}
.nav-links-:hover {
  transform: scale(1.1);
}

.nav-links- li a {
  color: white;
  text-decoration: none;
  padding: 8px;
  border: solid 1px;
  border-radius: 20px;
}
.nav-links- li a:hover {
  background-color: rgb(4, 99, 99);
}

.contenedores-texto {
  background-color: silver;
  border: 2px, solid black;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: inherit;
  flex-wrap: wrap;
  max-width: 100%;
  font-size: 18px;
}

a {
  text-decoration: none;
}

#texto-principal {
  font-size: 25px;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

.caja-integrantes2 {
  max-width: 300px;
  height: 500px;
  background-color: grey;
  padding: 15px;
}

.caja-contenedora {
  max-width: 100%;
  height: auto;
  padding: 20px;
  background-color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: inherit;
  flex-wrap: wrap;
}
.caja-contenedora .discos {
  background-color: silver;
  border: 2px solid #00f;
  animation: glowBorder 1.5s infinite ease-in-out;
}
@keyframes glowBorder {
  0% {
    box-shadow: 0 0 0px #00f;
  }
  50% {
    box-shadow: 0 0 20px #00f;
  }
  100% {
    box-shadow: 0 0 0px #00f;
  }
}

.imagen-adaptable {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.titulo-miembros {
  color: antiquewhite;
  margin: 1px;
}

footer {
  padding-left: 30px;
  font-size: 25px;
  text-decoration: underline;
  border: black;
  background-color: #333;
}
footer p {
  color: antiquewhite;
}
footer .a-footer {
  color: aliceblue;
}

#img-carrusel {
  border: solid #333;
  width: 100%;
  object-fit: cover;
  padding: 40px;
  background-color: #333;
}
#img-carrusel #h2-varios {
  color: aliceblue;
}

.caja-video {
  background-color: #333;
  padding: 25px;
}

.pulse {
  background-color: #333;
  font-size: 3rem;
  text-align: center;
  margin: 0;
  color: aliceblue;
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animacion-temblor {
  font-size: 3rem;
  text-align: center;
  color: aliceblue;
  animation: shakey 0.5s infinite;
  display: inline-block;
}

@keyframes shakey {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  10% {
    transform: translate(-2px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-2px, 2px) rotate(1deg);
  }
  30% {
    transform: translate(2px, -2px) rotate(0deg);
  }
  40% {
    transform: translate(2px, 2px) rotate(1deg);
  }
  50% {
    transform: translate(-2px, -2px) rotate(-1deg);
  }
  60% {
    transform: translate(-2px, 2px) rotate(0deg);
  }
  70% {
    transform: translate(2px, -2px) rotate(1deg);
  }
  80% {
    transform: translate(2px, 2px) rotate(-1deg);
  }
  90% {
    transform: translate(-2px, -2px) rotate(1deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}
.caja-titulo {
  max-width: 100%;
  height: auto;
  padding: 20px;
  background-color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: inherit;
  flex-wrap: wrap;
}

.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: silver;
  color: red;
  text-decoration: none;
  padding: 12px 16px;
  font-size: 24px;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
}

@media (min-width: 768px) {
  .discos {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }
}

/*# sourceMappingURL=style.css.map */
