@import url("style.css"); /*herencia*/
@font-face {
  font-family: letra;
  src: url("../sprites/Letra.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: 15 px 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;
}

.intro {
  margin-top: 90%;
  flex-grow: 60%;
}

.objetivo {
  margin-top: 90%;
  flex-grow: 60%;
}

.texto {
  color: white;
  padding: 20;
  font-size: 30px;
  border-left: 2px solid #f1650e;
  border-top: 2px solid #f1650e;
  border-right: 2px solid #f1650e;
  border-bottom: 2px solid#f1650e;
  backdrop-filter: blur(20px);
  font-family: letra;
}

.titulo {
  margin-bottom: 2vh;
  text-align: center;
  color: red;
  font-family: letra;
  font-size: 40px;
}

.controles {
  margin-top: 6vh;
  flex-grow: 0.6;
}
