/* Aesthetic styling for home.html with cute background and font */

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: 'Handlee', cursive;
  color: #52003d;
}

.page {
  max-width: 800px;
  margin: 3rem auto;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 192, 203, 0.8);
}

h1, h2 {
  text-align: center;
  color: #d10080;
}

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

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

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