
/* General settings */

*{

    margin: 0px;  /* sin margenes en el documento. Ningún elemento tendrá márgenes.*/
    padding: 0px;
  
    box-sizing: border-box; /* border, margin o padding, hacia dentro del contenedor */
    -webkit-box-sizing:border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
  }
  
  /* FAMILIA PARA todo EL TEXTO */
h1, h2, h3, h4, h5, h6, p, a {

  font-family: 'Oswald', sans-serif;
  font-family: 'Open Sans', sans-serif;
  font-family: 'Roboto', sans-serif;
  font-family: 'Roboto Condensed', sans-serif;

}


/* <uniquifier>: Use a unique and descriptive class name  */
/* <weight>: Use a value from 100 to 800 */

.jetbrains-mono {
font-family: "JetBrains Mono", monospace;
font-optical-sizing: auto;
font-weight: 300;
font-style: normal;
}



/* HEADER */


header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

/* Logo */

.logo img {
  width: 30px;
}

.logo h5 {
  font-size: 18px;
  font-weight: 100;
  color: #000;
  line-height: 30px;
  padding-left: 4px;
}

.logo {
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: start;
  padding: 15px;
}


/* MENU */

.navigation {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  list-style: none; 
  padding: 0 0 0 30px ; 
}

.navigation li a {
  color: #000;
  font-size: 20px;
  font-weight: 200;
  padding-right: 15px;
  text-decoration: none;
}

.navigation li a.speak {
  color: #D3220B;
  font-weight: 200;

}

.navigation li a.uselesspeak {
  pointer-events: none;
  color: #606060;
  font-weight: 200;
  font-size: 20px;
}


/* Main content */ 

/*.home {
  background-image: url(../images/a5_web75q.webp);
  background-position:bottom;
  background-size:contain;
  background-repeat: no-repeat;
  height: 90vh;
}
*/

.poster-tangoisall img {
  width: 100%;
  max-width: 900px;
}

.home {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0;
  padding-bottom: 10px;
}


/* Heading title */

h1 {
    color: black;
    font-size: 20px;
    line-height: 20px;
    font-family: 'Roboto';
    font-weight: 100;
    text-align: center;
  }

h2 {
  color: black;
  font-size: 22px;
  line-height: 22px;
  font-weight: lighter;
  text-align: center; 
  padding: 0; 
}  

h3 {
  color: black;
  font-size: 20px;
  line-height: 20px;
  font-weight: lighter;
  text-align: center; 
  padding: 0;
}  

h5 {
  color: black;
  font-size: 12px;
  line-height:20px;
  font-family: 'Roboto';
  font-weight: 100;
  text-align: center;
}

/* Place buttons */  

.buttons {
  display: flex;
  flex-direction: row;
  justify-content:space-around;
  width: 540px;
  max-width: 100%;

  padding: 0;
  
}

 .ldz, .bcn {
  text-align: center;
  width: 250px;
  color:#000000;
  text-decoration: none;
  padding:10px;
  margin-top: 20px;
  font-size: 20px;
  border: 1px solid #000000;
  border-radius: 10px;
  transition: all .5s;
}


.ldz:hover {
  cursor:pointer;
  color: #D3220B;
  border: 1px solid #D3220B;
  transition: all .5s ease-in;
}  

.bcn:hover {
  cursor:pointer;
  color: #D3220B;
  border: 1px solid #D3220B;
  transition: all .5s ease-in;
}  


/* RESPONSIVE ZONE */


@media (max-width: 900px) {
  .logo h5 {
    display: none;
  }
}


  /* Happening when screen wide is lower than 700px */

@media (max-width: 700px) {
  

  .home {
    padding-top: 100px;
  }  
  .buttons {
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
  } 
  

}






  
 