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: 'Karla', sans-serif;
  color: #3e0038;
}

.page {
  max-width: 850px;
  margin: 3rem auto;
  background-color: rgba(255, 255, 255, 0.92);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(255, 192, 203, 0.6);
}

h1, h2 {
  text-align: center;
  color: #bb2072;
  font-weight: normal;
}

p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}

a {
  display: inline-block;
  background-color: #f88ec8;
  color: white;
  padding: 0.75rem 1.4rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

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

