/* Page 2: Quicksand font, soft pink background */

body {
  background-image: url('bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin: 0;
  padding: 0;
  font-family: 'Quicksand', sans-serif;
  color: #4d0040;
}

.page {
  max-width: 850px;
  margin: 3rem auto;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 2.5rem;
  border-radius: 18px;
  box-shadow: 0 0 25px rgba(255, 182, 193, 0.6);
}

h1, h2 {
  text-align: center;
  color: #cc0077;
  font-weight: 600;
}

p {
  font-size: 1.15rem;
  line-height: 1.75;
  margin-bottom: 1.8rem;
}

a {
  display: inline-block;
  background-color: #ff6fb0;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

a:hover {
  background-color: #ff3d96;
}
