/* Home page styles - Simple */

.container {
  max-width: 60rem;
  padding: 0 1rem;
  margin: 3rem auto;
}

.footer {
  width: 100%;
  padding: 2rem 0;
  border-top: 1px solid #333;
  text-align: center;
  margin-top: 4rem;
}

.home-flex {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Invert GIF colors for dark theme */
.home-flex img[src*="gif"] {
  filter: invert(1);
}

/* Invert profile photo */
.contact-card img[src*="Perfil"] {
  filter: invert(1);
}

@media (max-width: 600px) {
  .home-flex {
    flex-direction: column;
    text-align: center;
  }
}
