@font-face {
  font-family: 'RainyHearts';
  src: url('fonts/rainyhearts.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: 'RainyHearts', sans-serif;
  font-size: 20px;
  background-color: #ede4f5;
  background-image: 
    linear-gradient(to bottom, rgba(255, 240, 245, 0.2) 0%, rgba(255, 255, 255, 0.3) 100%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  color: #5f4173; /* Muted purple text color */
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://files.catbox.moe/2l2gjq.png'); /* Your star image */
  background-size: 80px 80px; /* Adjust size of stars */
  background-repeat: repeat;
  animation: moveStars 6s linear infinite;
  z-index: -1;
}

p {
  margin-bottom: 1rem;
}

.centered-text {
  font-size: 20px;
  color: #e64b83;
  margin-top: 1rem;
}

ul {
  list-style-position: inside;
  padding-left: 0;
  text-align: left;
}

li {
  margin-bottom: 0.5rem;
}

.image {
  margin-top: 1rem;
  width: 30%;
  max-width: 350px;
  height: auto;
  border-radius: 5px;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease;
}

.image:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

@keyframes moveStars {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -80px 0;
  }
}
