/* styles.css */

body {
  margin: 0;
  padding: 0;
  font-family: 'Comic Neue', cursive, sans-serif;
  background-image: url("bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  color: #5a004f;
}

.page {
  background-color: rgba(255, 255, 255, 0.6); /* adds soft white overlay for text readability */
  margin: 2rem auto;
  padding: 2rem;
  max-width: 900px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Aesthetic Fonts */
h1, h2 {
  font-family: 'Playfair Display', serif;
  color: #d94d9a;
}

a {
  color: #bb3d8b;
  text-decoration: none;
  font-weight: bold;
}
a:hover {
  text-decoration: underline;
}

