@import url('https://fonts.googleapis.com/css2?family=Schoolbell&display=swap');

body {
  background-color: #fff0f5;
  color: #444;
  font-family: 'Schoolbell', cursive;
  margin: 0;
  padding: 0;
  text-align: center;
}

.container {
  max-width: 700px;
  margin: auto;
  padding: 2em;
  background: #fffafc;
  border: 2px dashed #ffc0cb;
  border-radius: 16px;
  box-shadow: 0 0 10px #ffdfdf;
}

header h1 {
  font-size: 2.5em;
  color: #ff69b4;
}

nav a {
  text-decoration: none;
  color: #ff69b4;
  margin: 0 10px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

.gallery {
  margin-top: 2em;
}

.gallery img {
  width: 120px;
  margin: 10px;
  border-radius: 8px;
  box-shadow: 0 0 5px #ddd;
  transition: transform 0.2s;
}

.gallery img:hover {
  transform: scale(1.1);
}

footer {
  margin-top: 2em;
  color: #888;
}

