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

#body {
  background-image: url(images/background.jpg);
  background-size: cover;
  background-attachment: fixed;
}

@media screen and (max-width: 768px) {
  #body {
    background-position: center right;
  }
}
#main {
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

/*NAVBAR*/
ul {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  column-gap: 40px;
}

.navbar {
  border-bottom: 2px solid rgba(78, 102, 151, 0.5960784314);
  box-shadow: 0 3px 32px 0 rgba(0, 0, 0, 0.37);
}

/*FOOTER*/
#footer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: 10px -4px 20px 0 rgba(0, 0, 0, 0.37);
  border-top: 2px solid rgba(78, 102, 151, 0.5960784314);
  text-align: center;
  width: 100%;
  height: 60px;
  font-family: inter;
  font-size: 5px;
  margin-top: 10px;
}

#footer i {
  font-size: 20px;
  color: #212529;
}

#footer h3 {
  font-size: 15px;
}

@media screen and (max-width: 768px) {
  #footer {
    height: 80px;
  }
  #footer h3 {
    font-size: 12px;
  }
  #footer i {
    font-size: 12px;
  }
  .footerCopy {
    margin-top: 12px;
  }
  .footerRedesSitio, .footerRedesPaulo {
    padding-right: 10px;
  }
}
/*PAGINAS*/
/*INDEX*/
.inicio {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.inicio img {
  width: 450px;
  height: 450px;
  border-radius: 50%;
  margin-right: 50px;
  box-shadow: 10px 20px 50px 10px;
}

.hoverScale {
  transform: scale(1);
  transition: transform 0.3s ease;
}

.hoverScale:hover {
  transform: scale(1.1, 1.1);
}

.infoInicio {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 60%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.infoInicio h1 {
  font-family: Roboto Slab;
  font-size: 50px;
}

.infoInicio h2,
.infoInicio p {
  font-family: Merriweather sans;
}

.infoInicio p {
  margin-top: 80px;
  font-size: 30px;
  color: rgb(2, 2, 2);
}

@media screen and (max-width: 768px) {
  .infoInicio {
    width: 85%;
    margin-bottom: 10px;
  }
  .inicio img {
    margin-top: 15px;
    width: 300px;
    height: 300px;
    margin-left: 45px;
  }
}
/*BIOGRAFIA*/
#mainBiografia {
  display: flex;
  height: auto;
}

.contenidoBiografia {
  display: flex;
  text-align: center;
  margin-left: 15px;
  margin-right: 100px;
  justify-content: center;
  flex-direction: column;
  width: 40%;
  gap: 100px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.titContenido {
  text-align: center;
  font-family: Roboto Slab;
  font-size: 50px;
  margin: 0px;
}

.textoContenido {
  font-size: 16px;
  font-family: Merriweather sans;
  margin: 0px;
}

.proxProyectos {
  display: flex;
  width: 100%;
  flex-direction: column;
  text-align: center;
  margin: 0px;
}

.proxProyectos h2 {
  font-family: Roboto Slab;
  text-align: center;
  margin: 0px;
}

.proxProyectos p {
  font-family: Merriweather sans;
  text-align: center;
  margin: 0px;
}

.imagenContenido {
  width: 350px;
  height: 350px;
  margin: 5px auto 30px;
  box-shadow: 10px 20px 50px 10px;
  border-radius: 40%;
}

.datosCuriosos {
  display: flex;
  flex-direction: column;
  width: 50%;
  row-gap: 10px;
  margin-right: 30px;
}

.datosCuriosos h2 {
  font-family: Roboto Slab;
  text-align: center;
}

.datosCuriosos p {
  font-family: Merriweather sans;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .contenidoBiografia {
    margin-top: 20px;
    margin-left: 0px;
    margin-right: 0px;
    width: 85%;
  }
  .datosCuriosos {
    width: 80%;
    margin-right: 0px;
  }
  .imagenContenido {
    width: 220px;
    height: 220px;
    margin: 5px auto 30px;
    box-shadow: 10px 20px 50px 10px;
    border-radius: 40%;
    margin-top: 30px;
  }
  #mainBiografia {
    flex-wrap: wrap;
    justify-content: center;
  }
  #mainBiografia .contenido {
    margin: 0;
  }
}
/*DISCOGRAFIA*/
.titDiscografia {
  text-align: center;
  width: 100%;
  font-family: Roboto Slab;
  font-size: 50px;
  margin-top: 20px;
}

.cancionesAlbumes {
  text-align: center;
  width: 100%;
}

.contenedorDiscografia {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
}

.canciones {
  width: 30%;
  margin-top: 50px;
  margin-left: 100px;
}

.canciones h2 {
  font-family: Roboto Slab;
  font-size: 30px;
  margin-bottom: 30px;
}

.canciones iframe {
  width: 400px;
  height: 600px;
  box-shadow: 5px 5px 20px 5px;
}

.albumes {
  margin-right: 60px;
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.albumes h2 {
  font-family: "Roboto Slab";
  margin-top: 0;
  font-size: 30px;
}

.albumContainer {
  display: flex;
  gap: 20px;
  padding: 10px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.albumContainer p {
  font-family: Merriweather sans;
}

.albumHomerun,
.albumBack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.imgHomerun,
.imgBack {
  margin-top: 10px;
  margin-bottom: 20px;
  border-radius: 60px;
  box-shadow: 5px 5px 20px 5px;
  width: 200px;
  height: 200px;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.imgHomerun:hover, .imgBack:hover {
  transform: scale(1.1, 1.1);
}

@media screen and (max-width: 768px) {
  .contenedorDiscografia {
    flex-direction: column;
  }
  .canciones {
    align-self: center;
    width: 80%;
    margin-left: 0px;
    margin-right: 0px;
  }
  .canciones iframe {
    width: 100%;
    height: 400px;
  }
  .albumes {
    margin-right: 0px;
    margin-left: 0px;
    margin-top: 100px;
  }
  .albumContainer {
    flex-direction: column;
    gap: 30px;
  }
  .contenedorDiscografia {
    flex-direction: column;
    align-items: center;
  }
}
/*FANS*/
.titulosFans {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 100%;
  margin-top: 35px;
  row-gap: 30px;
}

.titulosFans h1 {
  font-family: Roboto Slab;
  font-size: 50px;
}

.titulosFans h2 {
  font-family: Merriweather sans;
}

.comentarios {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  height: auto;
}

.comentarios article {
  display: flex;
  flex-direction: column;
  padding-top: 10px;
  width: 30%;
  height: 340px;
  text-align: center;
  margin: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.comentarios h3 {
  font-family: Roboto Slab;
}

.comentarios p {
  font-family: Merriweather sans;
  font-size: 20px;
}

.comentarioHeader {
  margin-bottom: 30px;
}

.comentarioHeader img {
  height: 90px;
  width: 90px;
  border-radius: 50px;
  box-shadow: 5px 8px 8px 0 rgba(0, 0, 0, 0.37);
  object-fit: cover;
  object-position: top;
}

.comentarios article span {
  font-size: 0.9rem;
  margin-top: 0px;
  color: #666;
  font-family: Merriweather sans;
}

@media screen and (max-width: 768px) {
  .comentarios p {
    font-size: 20px;
  }
  .comentarios article {
    width: 70%;
  }
  .comentarios span {
    display: none;
  }
  .cancionesAlbumes .contenedor {
    justify-content: center;
    flex-wrap: wrap;
  }
  .contenedorTitulosFans .comentarios {
    flex-direction: column;
    height: auto;
  }
}
/*GALERIA*/
.titGaleria {
  display: flex;
  justify-content: center;
  font-family: Roboto Slab;
  font-size: 50px;
  width: 100%;
}

.galeriaFotos {
  width: 100%;
  height: 100vh;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-template-areas: "img1  img2  img2  img3" "img4  img4  img5  img5" "img6  img7   img8  img9";
  row-gap: 10px;
  column-gap: 10px;
}

.galeriaFotos picture {
  display: flex;
  justify-self: center;
  width: 100%;
  height: 100%;
  background-size: cover;
  border: 3px solid rgba(78, 102, 151, 0.5960784314);
  box-shadow: 20px 20px 32px 0 rgba(0, 0, 0, 0.37);
}

.img1 {
  grid-area: img1;
  background-image: url(./images/img1.png);
  transform: scale(1);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.img2 {
  grid-area: img2;
  background-image: url(./images/img2.jpg);
  background-position-y: 7%;
  transform: scale(1);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.img3 {
  grid-area: img3;
  background-image: url(./images/img3.jpg);
  transform: scale(1);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.img4 {
  grid-area: img4;
  background-image: url(./images/img4.jpg);
  background-position-y: 35%;
  transform: scale(1);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.img5 {
  grid-area: img5;
  background-image: url(./images/img5.jpg);
  background-position-y: 5%;
  transform: scale(1);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.img6 {
  grid-area: img6;
  background-image: url(./images/img6.jpg);
  background-position: center;
  transform: scale(1);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.img7 {
  grid-area: img7;
  background-image: url(./images/img7.jpg);
  transform: scale(1);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.img8 {
  grid-area: img8;
  background-image: url(./images/img8.jpg);
  transform: scale(1);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.img9 {
  grid-area: img9;
  background-image: url(images/img9.jpg);
  transform: scale(1);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.img1:hover, .img2:hover, .img3:hover, .img4:hover, .img5:hover, .img6:hover, .img7:hover, .img8:hover, .img9:hover {
  transform: scale(1.1, 1.1);
  z-index: 10;
}

@media screen and (max-width: 768px) {
  .galeriaFotos {
    width: 100%;
    height: 100vh;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-template-areas: "img2  img2" "img4  img5" "img6  img8";
  }
}

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