* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Great Vibes', cursive;
  background: linear-gradient(135deg, #ffa07a, #ff69b4, #da70d6);
  color: #000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  text-align: center;
  padding: 2rem 1rem;
}

header h1 {
  font-size: 3rem;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

nav a {
  text-decoration: none;
  color: #000;
  font-size: 1.2rem;
}

main {
  padding: 2rem;
  text-align: center;
  flex: 1;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.8rem;
  margin-top: 2rem;
}

img {
  max-width: 100%;
  height: auto;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.photo-grid img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

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

footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}
