#main-title {
  font-size: 2.8rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8f9fa;
}

.container {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

h1 {
  text-align: center;
  margin-bottom: 20px;
  color: #2c3e50;
}

h2 {
  margin-bottom: 30px 0 15px;
  color: #34495e;
}

p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

ul li, ol li {
  margin: 8px 0;
}

.highlight {
  background-color: #fff3cd;
  padding: 2px 4px;
  border-radius: 3px;
}

/* Centered image that stays perfectly centered on all screen sizes */
.centered-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
}

.centered-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2)
}

/* Small gallery at the bottom */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 40px 0;
}

.gallery img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}

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

.photographer-link{
  text-align: center;
  margin: 30px 0;
  font-size: 1.1rem;
}

.footer {
  text-align: center;
  font-style: italic;
  color: #7f8c8d;
  margin-top:50px;
  font-size: 1.2rem;
}