@font-face {
  font-family: 'avarabold';
  src: url('webfonts/Bold/Avara-Bold.woff2') format('woff2'),
    url('webfonts/Bold/Avara-Bold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #fff;
  color: #333;
  font-family: Arial, sans-serif;
}

.site-header {
  padding: 16px 20px 10px;
  text-align: center;
}

.site-title,
h2 {
  margin: 0;
  color: #69e78b;
  font-family: 'avarabold', Arial, sans-serif;
  font-weight: normal;
}

.site-title {
  font-size: 35px;
  line-height: 1.25;
}

.tagline {
  margin: 4px 0 0;
  color: #555;
  font-size: 20px;
}

.site-nav,
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
}

.site-nav a,
.social-links a {
  color: #007bff;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
}

.site-nav a:hover,
.social-links a:hover,
.site-nav a[aria-current='page'] {
  color: #0056b3;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about-page {
  max-width: 800px;
  margin: 50px auto;
  padding: 0 20px;
  text-align: center;
}

.about-page h2 {
  font-size: 28px;
}

.about-page p {
  color: #555;
  font-size: 20px;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .gallery {
    grid-template-columns: 1fr;
  }

  .site-nav,
  .social-links {
    gap: 14px;
  }
}
