.featured-content {
  padding: 12rem 2rem 2rem 2rem; /* espacio arriba para el menú */
  text-align: center;
  font-family: 'Libre Baskerville', serif;
  /*background-color: #fdfcf9;*/
  color: #333;
}

h1 {
  font-size: 2.5rem;
  color: #386560;
  margin-bottom: 2rem;
  font-family: "Kaushan Script", cursive;
}

.friends-container {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
}

.friend {
  width: 250px;
  text-align: center;
}

.friend img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.friend img:hover {
  transform: scale(1.05);
}

.friend p {
  margin-top: 1rem;
  font-size: 1rem;
  color: #555;
}

a {
  text-decoration: none;
  color: inherit;
}

@media (max-width: 600px) {
  .friend {
    width: 80%;
  }
}