
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Playfair Display', serif;
}

body {
  background-color: #a795bc; /* color similar al fondo de la imagen */
}

.container {
  background-image: url('bg_sds.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  min-height: 100vh;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Ajustes para móviles */
@media (max-width: 768px) {
  .container {
    background-size: contain;
    background-position: top center;
    background-attachment: scroll;
  }
}



h1 {
  font-size: 4rem;
  position: relative;
  z-index: 1;
}

.email-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: white;
  color: #1f2937;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 10;
}

.email-button:hover {
  background-color: #1f2937;
  color: white;
}
