/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #fff0f5; /* rosita suave */
  color: #5e5e5e; /* gris suave para no contrastar demasiado */
  font-family: 'Quicksand', Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

/* Títulos con estilo cuqui */
h1, h2, h3 {
  color: #ff69b4; /* rosa fuerte estilo cute */
  font-family: 'Quicksand', Verdana, sans-serif;
  text-align: center;
}

/* Contenedor general con bordes redondeados y sombra rosada */
.container {
  background-color: #ffe4ec;
  border-radius: 1.2rem;
  box-shadow: 0 4px 12px rgba(255, 105, 180, 0.3);
  padding: 2rem;
  margin: 2rem auto;
  max-width: 800px;
}

/* Botones cuquis */
button {
  background-color: #ff69b4;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #ffa6c9;
}

/* Inputs suaves */
input, textarea {
  border: 1px solid #ffb6c1;
  border-radius: 1rem;
  padding: 0.8rem;
  background-color: #fffafc;
  width: 100%;
  margin-bottom: 1rem;
}

/* Enlaces rositas */
a {
  color: #ff69b4;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}