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

* {
  margin: 0px;
  padding: 0px;
}

/* LOGO--------------------------------------------------------*/
.logo {
  width: 70px;
  border-radius: 50%;
}

/*seccion BARRA DE NAVEGACION -------------------------------------*/
.encabezado nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  background: -webkit-gradient(linear, left top, left bottom, from(red), to(black));
  background: linear-gradient(to bottom, red, black);
}

.encabezado ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px;
}

.encabezado li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.encabezado a {
  text-decoration: none;
  color: white;
  font-size: 30px;
  font-family: 'Lobster', cursive;
  padding: 10px;
}

/* Estilos del h1 al h5 -------------------------------------------*/
h1 {
  text-align: center;
  margin-bottom: 0%;
  color: white;
  background: -webkit-gradient(linear, left top, left bottom, from(black), to(red));
  background: linear-gradient(to bottom, black, red);
  font-size: 80px;
  font-family: 'Lobster', cursive;
}

h2 {
  margin-bottom: 20px;
  text-align: center;
  color: white;
  font-family: 'Lobster', cursive;
  font-size: 45px;
}

h3 {
  font-size: 35px;
  color: white;
  text-align: center;
}

h4 {
  color: white;
  font-size: 25px;
  text-align: center;
  margin: 0;
  margin-bottom: 20px;
}

h5 {
  color: white;
  font-size: 15px;
}

p {
  padding: 1em;
  margin: 10px;
  color: white;
  font-family: cursive;
  font-size: 22px;
}

/* SECCION BIOGRAFIA---------------------------------------------*/
.fondoBiografia {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* SECCION GALERIA----------------------------------------------- */
.contenedorGaleria {
  background-color: black;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  padding: 10px;
  grid-gap: 10px;
}

.galeriaImagen {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.zoom {
  -webkit-transition: 0.5s !important;
  transition: 0.5s !important;
}

.zoom:hover {
  -webkit-transform: scale(1.3) !important;
          transform: scale(1.3) !important;
}

/* SECCION INTEGRANTES ----------------------------------------------*/
.contenedorIntegrantePadre {
  border: solid 5px white;
  margin-left: 2%;
  margin-right: 2%;
  margin-bottom: 2%;
}

.textoImagenIntegrante {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 10px;
  margin-left: 10px;
}

/* SECCION CANCIONES ---------------------------------------------*/
.contenedorLista {
  display: -ms-grid;
  display: grid;
  margin: 10px;
  border: 5px solid white;
  -ms-grid-columns: (1fr)[1];
      grid-template-columns: repeat(1, 1fr);
}

/*SECCION DISCOGRAFIA------------------------------------------------*/
.contenedorDiscografia {
  display: -ms-grid;
  display: grid;
  border: solid 5px white;
  margin: 15px;
  padding: 1px;
  -ms-flex-line-pack: center;
      align-content: center;
}

.contenedorDiscografia th {
  color: white;
  background-color: black;
  font-size: 23px;
}

.contenedorDiscografia td {
  color: white;
  background-color: black;
  font-size: 20px;
}

/* SECCION CONTACTO y FORMULARIO ------------------------------------*/
.contenedorTextoContacto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
}

form {
  border: 2px solid white;
  width: 350px;
  margin: auto;
  padding: 10px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 20px;
  border-radius: 20px;
}

input, textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 7px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 17px;
}

input:focus {
  width: 200px;
  font-size: 24px;
}

/* SECCION FOOTER ------------------------------------------*/
.contenedorFooter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -webkit-gradient(linear, left top, left bottom, from(black), to(red));
  background: linear-gradient(to bottom, black, red);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  position: static;
}

.contenedorFooter ul li {
  list-style: none;
}

.contenedorFooter a {
  margin-left: 15px;
  font-weight: bold;
  font-size: 15px;
  color: white;
}

.listaFooter {
  padding: 5px;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* MEDIA RESPONSIVE------------------------------------------------*/
@media (min-width: 360px) {
  .contenedorGaleria {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
  .textoImagenIntegrante {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  table {
    width: 100%;
    font-size: .9rem;
  }
  table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (min-width: 768px) {
  .contenedorGaleria {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .textoImagenIntegrante {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  table {
    width: 100%;
    font-size: .9rem;
  }
  table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (min-width: 1200px) {
  .contenedorGaleria {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
  .textoImagenIntegrante {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .contenedorDiscografia {
    display: -ms-grid;
    display: grid;
    border: solid 5px white;
    margin: 15px;
    padding: 1px;
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .contenedorDiscografia th {
    color: white;
    background-color: black;
    font-size: 23px;
  }
  .contenedorDiscografia td {
    color: white;
    background-color: black;
    font-size: 20px;
  }
  table tr {
    display: table-row;
  }
}
/*# sourceMappingURL=style.css.map */