
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Great+Vibes&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Playfair Display', serif;
  background: linear-gradient(135deg, #8b7d5e, #6b8e23, #9370db, #e6c9b5);
  color: #fdfdfd;
  text-align: center;
}

header {
  padding: 40px 20px 20px;
}

h1 {
  font-size: 3em;
  font-weight: bold;
  color: #f2e7f7;
}

h2 {
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 10px;
  color: #f2e7f7;
  letter-spacing: 2px;
}

a {
  display: block;
  font-size: 1.2em;
  margin: 15px 0;
  color: #f2e7f7;
  text-decoration: underline;
}

a:hover {
  color: #ffffff;
}

.portrait {
  margin-top: 20px;
}

.portrait img {
  width: 250px;
  border-radius: 50%;
}

.signature {
  font-family: 'Great Vibes', cursive;
  font-size: 1.5em;
  margin-top: 10px;
  color: #f2e7f7;
}

footer {
  margin-top: 30px;
  padding: 15px;
  font-size: 0.9em;
  color: #eee;
}

/* Gallery styling */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.gallery img {
  width: 250px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}
