/* Reset de estilos básicos */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f4f4f4;
}

.container {
  text-align: center;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-box {
  width: 350px;
  height: 350px;
  background-color: #3498db; /* Color de fondo temporal para la imagen */
  margin: 0 auto 20px auto; /* Centrado con margen inferior */
  border-radius: 8px;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.button {
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  color: white;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.instagram {
  background-color: #e4405f;
}

.facebook {
  background-color: #1877f2;
}

.whatsapp {
  background-color: #25d366;
}

.button:hover {
  opacity: 0.8;
}

/* Media queries para hacer la página responsiva */
@media (max-width: 768px) {
  .image-box {
    width: 250px;
    height: 250px;
  }
  
  .button {
    padding: 8px 15px;
  }
}

@media (max-width: 480px) {
  .image-box {
    width: 200px;
    height: 200px;
  }
  
  .button {
    padding: 7px 12px;
  }
}
