
body {
  background: linear-gradient(to bottom, #ffe6f2, #fff0f5); /* pastel pink gradient */
  font-family: "Comic Sans MS", "Arial", sans-serif;
  color: #ff4da6;
  text-align: center;
  margin: 0;
  padding: 20px;
}

/* bouncing Hello Kitty logo with sticker style */
img.logo {
  width: 220px;
  margin-top: 20px;
  animation: bounce 2s infinite;
  filter: drop-shadow(0 0 6px #ffd1e8);   /* pink glow */
  border: 5px solid white;                /* white frame */
  border-radius: 20px;                    /* rounded corners */
  padding: 5px;                           /* breathing room */
  background-color: #fff;                 /* sticker background */
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

h1 {
  color: #ff3399;
  font-size: 2.5em;
  text-shadow: 2px 2px #ffffff;
}

p {
  font-size: 1.2em;
  color: #cc0066;
}

a {
  color: #ff66b2;
  text-decoration: none;
  font-weight: bold;
  background: #fff0f5;
  padding: 5px 10px;
  border-radius: 10px;
  transition: 0.3s;
}

a:hover {
  color: #fff;
  background: #ff66b2;
}

h2 {
  margin-top: 30px;
  color: #ff3399;
  font-size: 1.8em;
}

/* cute list box styled like a sticker */
ul {
  background-color: #ffffffcc; /* soft white with transparency */
  padding: 15px 30px;
  border-radius: 20px;
  display: inline-block;
  list-style-type: none;       /* removes default bullets */
  box-shadow: 0 0 15px #ffb6c1;
  border: 3px solid white;     /* sticker frame */
}

li {
  margin: 10px 0;
  font-size: 1.2em;
  color: #e60073;
}
