@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: 15 px 20px;
  color: white;
  text-decoration: none;
  z-index: 2;
}
.menu-horizontal > li > a:hover {
  color: red;
}

.contenedor {
  display: flex;
  justify-content: space-around;
  justify-content: center;
  margin-top: 100px;
}
.tarjeta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 400px;
  height: 500px;
  margin: 20px;
  border: 1px solid lightgray;
  box-shadow: 2px 2px 8px 4px #d3d3d3d1;
  border-radius: 15px;
  font-family: letra_nombres;
  overflow: hidden;
}
.titulo {
  font-size: 40px;
  padding: 10px 50px 10px 50px;
  color: #f1650e;
  font-family: letra_nombres;
  text-align: center;
}
.cuerpo {
  padding: 10px;
  color: #f1700e;
}

.cuerpo img {
  max-width: 100%; /*para que la img no se salga del contenedor*/
  max-height: 100%;
  object-fit: contain;
  align-items: center;
  margin-left: 60px;
}
.cuerpo h3 {
  color: white;
  text-align: center;
}

.pie {
  background: #f1700e;
  border-radius: 0 0 15px 15px;
  padding: 10px;
  text-align: center;
  font-family: letra_nombres;
}
.pie p {
  font-family: letra_nombres;
  font-size: 20px;
  text-decoration: none;
  color: white;
}
