
body {
  margin: 0;
  background: radial-gradient(#120c15, #050308);
  color: #f0d9b5;
  font-family: 'IM Fell English SC', serif;
  background-image: url('https://i.pinimg.com/1200x/1e/38/44/1e3844b719a8e3f701c35fb65ea71f63.jpg');
}


header {
  text-align: center;
  padding: 3em 1em;
  background: linear-gradient(180deg, #1a0f1d, #0d0610);
  border-bottom: 2px solid #b8860b;
  box-shadow: 0 0 20px #ff00cc55;
}

h1 {
  font-family: 'UnifrakturCook', cursive;
  font-size: 3.5em;
  color: #ff00cc;
  text-shadow: 0 0 10px #ff00cc, 0 0 25px #b8860b;
}

.subtitle {
  color: #b8860b;
  font-size: 1.2em;
  margin-top: -0.5em;
}

nav a {
  margin: 0 1em;
  color: #f0d9b5;
  text-decoration: none;
  border-bottom: 1px dotted #ff00cc;
}

nav a:hover {
  color: #ff00cc;
}

.panel {
  padding: 3em 10%;
  border-top: 1px solid #b8860b55;
}

h2 {
  font-family: 'UnifrakturCook', cursive;
  color: #ff99ff;
  text-shadow: 0 0 8px #ff00ccaa;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: center;
}

.gallery img {
  width: 250px;
  border: 2px solid #b8860b;
  box-shadow: 0 0 10px #ff00cc88;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05) rotate(-1deg);
}

footer {
  text-align: center;
  padding: 1em;
  border-top: 1px solid #b8860b;
  font-size: 0.9em;
  background: #0d0610;
  color: #b8860b;
}

