.gallery {
    max-width: 700px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
  }
  h1 {
  text-align: center;
  font-family: Arial, sans-serif;
  margin-bottom: 20px;
  color: #333;
}
  .main-image {
    width: auto;
    max-width: 100%;
    height: 600px;
    
    border-radius: 6px;
    display: block;
    margin: 0 auto;
  }
  .image-info {
    margin-top: 8px;
    font-size: 18px;
    text-align: center;
  }
  .image-info a {
    color: #0066cc;
    text-decoration: none;
    margin-left: 10px;
	font-family: Arial, sans-serif;
  }
  .image-info a:hover {
    text-decoration: underline;
  }
  .thumbnails {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .thumbnails img {
   width: auto;
    max-width: 100%;
    height: 160px;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.3s;
  }
  .thumbnails img.active,
  .thumbnails img:hover {
    border-color: #0066cc;
  }
  .navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
  }
  .nav-button {
    background-color: #0066cc;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-size: 16px;
  }
  .nav-button:hover {
    background-color: #005bb5;
  }
  @media (max-width: 600px) {
  .gallery {
    max-width: 100%;
    padding: 0 10px;
  }
  .main-image {
    width: 100%;
    height: auto;
    border-width: 1.5px;
  }
  .image-info {
    font-size: 16px;
    margin-top: 6px;
  }
  .thumbnails {
    gap: 6px;
  }
  .thumbnails img {
    width: auto;
    height: 160px;
  }
  .nav-button {
    padding: 12px 16px;
    font-size: 18px;
  }
  .navigation {
    margin-top: 12px;
  }
  @media (max-width: 600px) { 
  .thumbnails img {
    width: auto;
    height: 160px;
  }}

  /* Footer */

	#footer {
		margin-top: 0;
	}

		#footer a {
			color: inherit;
		}

	#copyright {
		color: #aaa;
		padding: 4em 0 0 0;
		text-align: center;
	}

		#copyright a {
			color: inherit;
		}
}