@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@400..800&family=Black+Ops+One&display=swap");
/*Paleta de Colores*/
main .about-us h1, main .noticias h2, .catalogo h1, .catalogo h2, .formulario h1, .galeria p {
  background: rgba(0, 0, 0, 0.9);
  color: white;
  text-align: center;
  font-size: 70px;
  border: 3px solid black;
  margin: 15px;
}

@media screen and (max-width: 490px) {
  main .about-us h1, main .noticias h2, .catalogo h1, .catalogo h2, .formulario h1, .galeria p {
    font-size: 35px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style-type: none;
  text-decoration: none;
  /* border: 3px solid red; */
}

body {
  font-family: "Baloo 2", sans-serif;
  color: black;
  background-image: url(../img/fondo2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

a.nav-link.active {
  color: black;
}

a.nav-link.active:hover {
  transform: translateY(-4px) translateX(-2px);
  box-shadow: 2px 5px 0 0 black;
  background-color: white;
}

a.nav-link.active:active {
  transform: translateY(2px) translateX(1px);
  box-shadow: 0 0 0 0 black;
}

.btn-outline-success {
  background-color: white;
  color: black;
  border: 1px solid black;
}

.btn-outline-success:hover {
  background-color: black;
  color: white;
  border: 1px solid white;
}

header {
  top: 0;
}
header nav img {
  height: 50px;
  width: 50px;
}

main {
  color: black;
}
main .hero {
  /* width: 100vw; */
  height: 100vh;
}
main .hero .herodiv {
  padding: 10px;
  height: 100%;
  text-align: center;
  color: black;
}
main .hero h1 {
  margin: 30px;
  font-family: "Black Ops One", system-ui;
  font-size: 120px;
  font-weight: 400;
  font-style: normal;
  text-shadow: 2px 2px 2px white;
}
main .hero p {
  margin: 30px;
  font-size: 50px;
}
main .hero a {
  margin-top: 30px;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  color: black;
  padding: 5px;
  border: 2px solid black;
}
main .hero a:hover {
  background-color: black;
  color: white;
  border-color: white;
}
main .conocelos {
  display: flex;
  width: 100%;
  height: 100vh;
}
main .conocelos .foto1 {
  height: 100%;
  width: 100%;
  flex-grow: 1;
  object-fit: cover;
}
main .conocelos .foto1:hover {
  width: 300px;
}
main .resena {
  background: rgba(0, 0, 0, 0.9);
  color: white;
}
main .resena div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 100vh;
}
main .resena div p {
  width: 100%;
  padding: 15px;
}
main .resena div p span {
  font-family: "Black Ops One", system-ui;
  font-size: 25px;
  margin-left: 20px;
  border: 1px solid white;
  padding: 5px;
}
main .resena div .img {
  height: 100%;
  width: 100%;
}
main .resena div img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

main .about-us {
  text-align: center;
}
main .about-us p {
  background: rgba(0, 0, 0, 0.9);
  margin: 15px;
  color: white;
}
main .noticias {
  display: flex;
  flex-direction: column;
  text-align: center;
}
main .noticias .tarjetasNoticias {
  display: flex;
  flex-direction: row;
  gap: 15px;
  padding: 15px;
}
main .noticias .tarjetasNoticias div {
  border: 2px solid black;
  background: rgba(0, 0, 0, 0.7);
  color: white;
}
main .noticias .tarjetasNoticias div img {
  width: 300px;
  height: 300px;
}

.catalogo .discografia {
  margin: 10px 10px;
  columns: 4 250px;
  column-gap: 15px;
  color: white;
}
.catalogo .discografia .discoAlbum {
  background: rgba(0, 0, 0, 0.9);
  width: 100%;
  height: 100%;
  border: 1px solid black;
  border-radius: 10px;
  margin-bottom: 1rem;
  text-align: center;
  page-break-inside: avoid;
}
.catalogo .discografia .discoAlbum img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.catalogo .discografia .discoAlbum p {
  color: #7c4dff;
}

.formulario {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  color: white;
}
.formulario h1 {
  width: 97%;
}

.galeria .galeria1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-template-rows: auto;
  gap: 10px;
}
.galeria .galeria1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

footer {
  font-size: 15px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  background-color: black;
  padding-top: 2em;
  padding-bottom: 2em;
}
footer .mapa h2 {
  color: white;
  font-size: 30px;
  text-align: center;
  margin: 0;
}
footer .mapa a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  text-decoration: none;
}
footer .redes h2 {
  color: white;
  font-size: 30px;
  text-align: center;
  margin: 0;
}
footer .redes a i {
  text-decoration: none;
  font-size: 40px;
  color: white;
  padding: 15px;
}

@media screen and (max-width: 490px) {
  main .hero .herodiv h1 {
    font-size: 75px;
  }
  main .hero .herodiv p {
    font-size: 30px;
  }
}
@media screen and (max-width: 819px) {
  main .resena div {
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
    /* overflow: auto; */
  }
  main .resena div img {
    width: 350px;
    height: 400px;
    object-fit: cover;
    position: relative;
  }
}
@media screen and (max-width: 550px) {
  footer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 940px) {
  main .noticias .tarjetasNoticias {
    flex-direction: column;
  }
}

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