/* 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 {
  /* reset suave */
  box-sizing: border-box;
}

body {
  background: linear-gradient(#fff0f5, #fef6ff);
  font-family: 'Asset', serif;
  color: #6b4b6b;
  margin: 0;
  padding: 40px;
  
}

/* contenedor principal */
.page {
  max-width: 800px;
  margin: auto;
  background: #fffdfd;
  border-radius: 25px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(180, 120, 180, 0.15);
  border: 2px dashed #f2cce5;
}

/* header */
header {
  text-align: center;
  margin-bottom: 25px;
}

header h1 {
  font-family: 'Sacramento', cursive;
  font-size: 3.2em;
  margin: 0;
  color: #d88bbd;
}

.subtitle {
  font-size: 0.95em;
  color: #a77fa7;
}

/* navegación */
nav {
  text-align: center;
  margin-bottom: 30px;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #c97fb5;
  background: #fff0f7;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.9em;
  transition: all 0.3s ease;
}

nav a:hover {
  background: #f7d6ea;
  color: #8b4b7a;
}

/* tarjetas */
.card {
  background: #fff7fb;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #f0cfe5;
}

.card h2 {
  font-family: 'Sacramento', cursive;
  font-size: 2em;
  margin-top: 0;
  color: #c96da8;
}

.card p {
  line-height: 1.6;
  font-size: 0.95em;
}

/* footer */
footer {
  text-align: center;
  font-size: 0.8em;
  color: #a78ca7;
  margin-top: 20px;
}