.card {
  background: rgba(255, 255, 255, 0.6);/* more transparent */
  backdrop-filter: blur(12px);            /* slight stronger blur */
  padding: 40px 50px;                     /* a bit larger */
  border-radius: 20px;
  text-align: center;
  box-shadow: 010px 10px 30px rgba(0, 0, 0, 0.2);
  width: 360px;                           /* bigger card */
 margin: 60px auto 0 auto;            /* push down a bit */
  position: relative;                     /* keep it positioned */
}


.card-title {
  font-size: 1.8rem;
  color:  #000000;; /* dark accent color */
  margin-bottom: 12px;
}

.card-text {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
}

.card-button {
  padding: 12px 28px;
  font-size: 1rem;
  color: #fff;
  background-color: #a8e6a1; /* sky‑blue style button */
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.card-button:hover {
  background-color:#8dd78d ;
  transform: translateY(-2px);
}

  
 body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: 'Poppins', sans-serif;

  /* Background image */
  background-image: url("https://summerinndreamland.neocities.org/images/upscaled_2x_undefined%20(16).jpg");
  background-size: cover;           /* Make it cover whole screen */https://neocities.org/site_files/text_editor?filename=aya.css#
  background-position: center;      /* Center the image */
  background-repeat: no-repeat;     /* Don’t repeat */
  background-attachment: fixed;     /* Makes it stay when scrolling */
}








