/* Resetear estilos básicos */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: Arial, sans-serif;
}

/* Contenedor principal */
.container {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centrar verticalmente */
  align-items: center; /* Centrar horizontalmente */
  height: 100vh;
  background-color: #f4f4f9; /* Color de fondo */
}

/* Imagen */
.center-image {
  width: 800px;
  height: auto;
  margin-bottom: 20px;
}

/* Contenedor de redes sociales */
.social-icons {
  display: flex;
  gap: 20px; /* Espacio entre íconos */
}

/* Enlaces de redes sociales */
.social-link {
  font-size: 2rem; /* Tamaño de íconos */
  color: #333; /* Color por defecto */
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Hover de los íconos */
.social-link:hover {
  color: #1877F2; /* Color azul para Facebook */
}

.social-link:nth-child(2):hover {
  color: #E1306C; /* Color rosa para Instagram */
}
