@font-face {
  font-family: vagner;
  src: url(../fonts/Vanger.otf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-image: url("../assets/fondo-daddy2.jpg");
  font-family: vagner;
  display: flex;
  width: 100%;
  height: 100vh;
  flex-direction: column;
}

.button_yellow {
  text-decoration: none;
  border: none;
  cursor: pointer;
  width: 150px;
  transition-duration: 0.4s;
  display: inline-block;
  font-size: 30px;
  font-weight: bold;
  align-self: center;
  color: #000;
  background-color: rgb(204, 201, 19);
}
.button_yellow a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.8);
}
.button_yellow:hover {
  background-color: rgb(177, 166, 14);
}

/* INICIO */
.section__index {
  background-color: rgba(0, 0, 0, 0.8);
}

.div__inicio {
  display: flex;
  flex-direction: row;
}

.div__titulo {
  display: flex;
  justify-content: center;
}
.div__titulo .titulo__inicio {
  color: rgb(204, 201, 19);
  font-size: 80px;
  text-align: center;
  margin: 30px;
}

p.texto__inicio {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 50px;
  padding: 10px;
  color: #fff;
}

.index__card {
  width: 18rem;
}

.picture__inicio {
  margin: auto;
  text-align: center;
}

.imagen__inicio {
  border: 5px rgb(44, 42, 42) solid;
  width: 100%;
}

/* GALERIA */
.section__galeria {
  background-color: rgba(0, 0, 0, 0.8);
}
.section__galeria h1 {
  font-size: 100px;
  text-align: center;
  color: rgb(241, 241, 241);
}
.section__galeria h2 {
  font-size: 90px;
  color: rgb(204, 201, 19);
  text-align: center;
}

.div__fotos {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 1fr);
  margin-bottom: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.div__fotos__img {
  display: flex;
  justify-content: center;
}
.div__fotos__img:nth-of-type(1) {
  grid-column: 1/5;
}
.div__fotos__img:nth-of-type(2) {
  grid-column: 5/9;
}
.div__fotos__img:nth-of-type(3) {
  grid-column: 9/13;
  grid-row: 1/3;
}
.div__fotos__img:nth-of-type(4) {
  grid-column: 1/9;
  grid-row: 2/3;
}
.div__fotos__img > img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 90%;
  align-self: center;
  max-height: 90%;
  margin: 10px;
  border: 5px rgb(44, 42, 42) solid;
}

.div__videos__iframe {
  display: flex;
  justify-content: center;
  flex-direction: row;
}
.div__videos__iframe iframe {
  width: 100%;
  max-width: 500px;
  height: 250px;
  margin: 10px;
  border: 5px rgb(44, 42, 42) solid;
}

/* ALBUMES */
.section__albumes {
  background-color: rgba(0, 0, 0, 0.8);
}
.section__albumes h1 {
  font-size: 100px;
  text-align: center;
  color: rgb(241, 241, 241);
}
.section__albumes .div__albumes {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.section__albumes .div__albumes iframe {
  width: 100%;
  height: 380px;
  margin: 10px;
}
.section__albumes .div__albumes h3 {
  font-size: 30px;
  color: rgb(235, 229, 124);
  text-align: center;
}
.section__albumes .div__albumes .p__albumes {
  font-size: 50px;
  color: rgb(241, 241, 241);
  text-align: center;
}
.section__albumes .div__albumes .div__album {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 10px;
}

/* BIOGRAFIA */
.section__flex {
  display: flex;
  justify-content: center;
  flex-direction: row;
  background-color: rgba(0, 0, 0, 0.8);
}

.div__biografia {
  font-size: 40px;
  color: #fff;
  width: 80%;
  justify-content: center;
}
.div__biografia p {
  text-align: center;
}

.p__biografia {
  font-size: 70px;
  color: #fff;
  display: table;
  margin: auto;
  color: rgb(204, 201, 19);
}

/* TOUR */
.section__tour {
  background-color: rgba(0, 0, 0, 0.8);
}

.p__tour__title {
  font-size: 60px;
  display: table;
  text-align: center;
  margin: auto;
  color: rgb(204, 201, 19);
}

.div__tour {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.div__tour__sub {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 20px 100px;
}
.div__tour__sub p {
  font-size: 30px;
  color: #fff;
}

/* CONTACTO */
.div__contacto {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 60%;
}
.div__contacto .title {
  font-size: 50px;
  color: rgb(204, 201, 19);
}
.div__contacto p {
  color: #fff;
  font-size: 40px;
}

.contacto__primero {
  margin: 40px;
}
.contacto__primero h1,
.contacto__primero p {
  text-align: center;
}

.div__contacto__sub {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 20px;
  font-size: 40px;
}
.div__contacto__sub label {
  color: rgb(204, 201, 19);
}
.div__contacto__sub textarea {
  height: 120px;
}

@media screen and (max-width: 992px) {
  .div__fotos {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(4, auto);
  }
  .div__fotos__img {
    max-width: 500px;
    margin: 0 auto;
  }
  .div__fotos__img:nth-of-type(1) {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .div__fotos__img:nth-of-type(2) {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .div__fotos__img:nth-of-type(3) {
    grid-column: 1/2;
    grid-row: 3/4;
  }
  .div__fotos__img:nth-of-type(4) {
    grid-column: 1/2;
    grid-row: 4/5;
  }
  .div__videos__iframe {
    flex-direction: column;
  }
  .div__videos__iframe iframe {
    margin: 0 auto;
    width: 400px;
  }
  .div__inicio {
    flex-direction: column;
    width: 100%;
    height: 1fr;
    text-align: center;
  }
  .imagen__inicio {
    max-width: 600px;
  }
  .img.imagen__inicio {
    width: 90vw;
  }
  .div__contacto {
    width: 70%;
  }
}
@media screen and (max-width: 650px) {
  .div__tour__sub {
    margin: 50px 20px;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 480px) {
  .div__contacto p {
    font-size: 30px;
  }
  .div__videos__iframe iframe {
    width: 95%;
  }
}
header {
  background-color: rgb(42, 42, 40);
}

.header__nav {
  width: 100%;
  height: 100px;
  display: flex;
}

.header__nav__logo img {
  width: 100px;
}

.header__nav__lista {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.header__nav__lista ul {
  background-color: rgb(42, 42, 40);
  list-style: none;
}
.header__nav__lista ul li {
  padding: 20px;
  text-align: end;
  display: inline-block;
}
.header__nav__lista ul li a {
  text-decoration: none;
  padding: 10px;
  font-weight: bold;
  transition-duration: 0.4s;
  color: rgb(233, 218, 14);
  font-size: 30px;
}
.header__nav__lista ul li a:hover {
  background-color: rgb(233, 218, 14);
  color: rgb(26, 26, 26);
}

.burger__button {
  margin-right: 10px;
}

footer {
  margin-top: auto;
}
footer ul {
  background-color: rgba(0, 0, 0, 0.8);
  list-style: none;
  text-align: end;
  margin: 0;
}
footer ul li {
  padding: 20px;
  display: inline-block;
}
footer ul li a {
  text-decoration: none;
  color: rgb(204, 201, 19);
  font-size: 30px;
}
footer ul li img {
  width: 30px;
}
footer ul li img:hover {
  transform: scale(1.5, 1.5);
  transition-duration: 0.4s;
}/*# sourceMappingURL=styles.css.map */