/* جسم الصفحة */
body {
  background-color: #1e1e2f;
  color: #f2f2f2;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
  padding: 50px;
  margin: 0;
}

/* العنوان */
h1 {
  font-size: 3em;
  color: #ffaad4;
  margin-bottom: 20px;
}

/* الفقرة */
p {
  font-size: 1.4em;
  margin-bottom: 30px;
}

/* الصورة */
img {
  width: 200px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(255, 170, 212, 0.3);
  transition: transform 0.3s ease;
}

img:hover {
  transform: scale(1.05);
}

/* اللينك */
a {
  display: inline-block;
  margin-top: 25px;
  padding: 10px 20px;
  background-color: #ffaad4;
  color: #1e1e2f;
  text-decoration: none;
  font-weight: bold;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

a:hover {
  background-color: #ffcce4;
}
#kiss-anim {
  position: absolute;
  font-size: 3em;
  opacity: 0;
  transition: all 0.5s ease;
}
#kiss-anim.show {
  opacity:1;
  transform: translateY(-50px) scale(1.5);
}

