body {
  margin: 0;
  background-color: #2e2e2e;
  font-family: 'Comic Sans MS', cursive;
  color: #cddfee;
  text-align: center;
}

.goth-title {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  text-shadow: 2px 2px 4px #000;
  letter-spacing: 2px;
  color: #d8d8d8;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}

.image-frame {
  border: 4px double #8caacc;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.image-frame:hover {
  transform: scale(1.05);
}

.image-frame img {
  max-width: 200px;
  height: auto;
  display: block;
}
