body {
  font-family: 'Arial', sans-serif;
  background-color: #f5f5ff;
  color: #222;
  line-height: 1.6;
  padding: 20px;
}

a {
  color: #3b82f6;
  text-decoration: none;
}

h1, h2 {
  color: #111;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

ul li::before {
  content: "✨ ";
  margin-right: 5px;
  .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  padding: 20px;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}