/* Y2K THEME STYLE */
body {
  margin: 0;
  font-family: 'Comic Neue', cursive;
  background: linear-gradient(135deg, #fceaff, #e0f7ff);
  color: #4b0082;
  overflow-x: hidden;
}

header {
  text-align: center;
  padding: 2rem 1rem;
  font-family: 'Orbitron', sans-serif;
  color: #ff00cc;
  text-shadow: 2px 2px #00ffff;
}

h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.gif-decorations {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.gif-decorations img {
  width: 60px;
  height: auto;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 1rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.photo {
  background: #fff0fb;
  border: 2px dashed #ff69b4;
  border-radius: 20px;
  padding: 1rem;
  box-shadow: 0 8px 16px rgba(255, 0, 200, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.photo:hover {
  transform: scale(1.05);
}

.photo img {
  max-width: 100%;
  border-radius: 12px;
  margin-bottom: 0.5rem;
}

.photo p {
  font-size: 1rem;
  color: #6600cc;
  font-weight: bold;
}

footer {
  text-align: center;
  margin-top: 3rem;
  padding: 1rem;
  font-size: 0.9rem;
  color: #999;
}

/* Optional background overlay for extra Y2K feel */
.background-gif {
  background-image: url('cute/stars.gif'); /* replace with your own gif */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
