h1{
  color: white;
  text-align: center;
  font-size: 45px;
}
.link{
    font-size: 30px;
   
}
 a:link{
        color: white;
        text-decoration: none;
    }
a:active{
        color: red;
    }
a:visited {
        color: red;
    }
.imagenes{
    display: flex;
    justify-content: flex-end;
    
}
.imagenes img{
    margin-left: 10px;
}
p{
    color: white;
}
h2{
    color: white;
}
.bio{
    text-align: right;
    margin-right: -100px;
    position: relative;
    height: 200px;
    border: 1px solid white;
    width: 500px;
    
}
.texbio{
    text-align: right;
    position: absolute;
    top: 20px;
    right: 50px;
    color: red;
}
.contenboot{
    text-align: right;
    display: flex;
    justify-content: flex-end;
    
}
.contenboot img{
    margin-right: 10px;
}
.imagenes{
    display: flex;
    justify-content: flex-end;
    
}
.imagenes img{
    margin-left: 10px;
}
.contenedor {
  display: flex; /* Habilita el modelo de caja flexible */
  justify-content: space-between; /* Separa los elementos a los extremos */
  width: 100%; /* Asegura que el contenedor tome todo el ancho disponible */
  border: 1px solid black; /* Para visualizar el contenedor */
  padding: 10px;
  box-sizing: border-box;
}
.link2{
    font-size: 30px;
    padding: 10px 120px;
}
/*comienzo de tarjeta FF principal*/
.contenedorPadreFF{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 20px auto;
}
.contenedorImagenFF{
    display: block;
    max-width: 100%;
    height: auto;
    margin: 10px auto;
}
.tarjetas{
 flex-basis: calc(25% - 20px);
 margin: 10px;
 text-align: center;
 border: 1px solid #ccc;
 padding: 10px;
 box-sizing: border-box;
}
.Letratarjetas{
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
}
/*fin de tarjetas de FF principal*/

/*comienzo para tarjetas de cada FF*/
.contenedor-tarjetas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* centra horizontalmente */
  gap: 30px; /* espacio entre tarjetas */
}

/* Tarjetas individuales */
.tarjeta {
  background-color: black;
  width: calc(25% - 30px); /* 4 por fila con espacio */
  min-width: 250px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

/* Mantener altura uniforme */
.tarjeta p {
  flex-grow: 1;
}

/* Imagen centrada y con tamaño fijo */
.tarjeta img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin: 15px 0;
}