@import url("style.css"); /*herencia*/
@font-face {
  font-family: letra;
  src: url("../sprites/Letra.otf");
}
@font-face {
  font-family: letra_nombres;
  src: url("../sprites/Letra_Nombres.otf");
}
.menu-horizontal {
  list-style: none; /*quita los circulitos de la lista*/
  display: flex; /* los pone unos al lado del otro en horizontal*/
  justify-content: space-around; /* los separa un poco*/
  font-family: letra;
  font-size: 50px;
}
.menu-horizontal > li > a {
  display: block; /* los pone unos al lado del otro en horizontal*/
  padding: 15px 20px;
  color: white;
  text-decoration: none;
}
.menu-horizontal > li > a:hover {
  color: red;
}
.container {
  display: flex;
  flex-direction: column;
  flex-flow: column wrap;
  justify-content: space-around;
  align-items: stretch;
  align-content: center;
  text-align: center;
  padding-top: 2em;
  padding-left: 4em;
  padding-right: 4em;
}
.desarrollo {
  margin-top: 90%;
  flex-grow: 60%;
}
.titulo {
  margin-bottom: 1vh;
  text-align: center;
  color: red;
  font-family: letra;
  font-size: 50px;
}
.titulo2 {
  text-align: left;
  margin-bottom: 0.4vh;
  color: #f1650e;
  list-style-type: none;
  font-family: letra_nombres;
}
ul {
  list-style: none;
}
.texto {
  color: white;
  text-align: left;
  font-size: 40px;
  font-family: letra;
}
.cointainer_t {
  border-left: 2px solid #f1650e;
  border-top: 2px solid #f1650e;
  border-right: 2px solid #f1650e;
  border-bottom: 2px solid#f1650e;
  backdrop-filter: blur(20px);
}
.cointainer_t > li > a {
  color: white;
  text-decoration: none;
  font-family: letra;
  font-size: 30px;
}
.cointainer_t > li > a:hover {
  color: red;
}
