
body {
  font-family: Arial, sans-serif;
  background-color: #fdf6f9; 
  color: #333;
  margin: 0;
  padding: 20px;
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

h1 {
  font-size: 3rem;
  color: #ff6b9a; 
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}


h1::before,
h1::after {
  content: "♥";
  color: #ff6b9a;
  margin: 0 12px;
  font-size: 1.5rem;
  vertical-align: middle;
  display: inline-block;
  animation: bounce 1.2s infinite ease-in-out;
}


h1::after {
  animation-delay: 0.6s;
}


@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

p {
  background: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  margin: 12px 0;
}


.image-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.image-group img {
  width: 250px;
  height: auto;
  border-radius: 8px;
  margin: 8px;
}


a {
  display: inline-block;
  margin: 8px 4px 0 0;
  padding: 8px 12px;
  background: #ff6b9a;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
}

a:hover {
  background: #ff8fb8;
}
