    .gallery {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }

    .image {
      margin: 10px;
    }

    .image img {
      width: 300px;
      height: 200px;
      object-fit: cover;
      border-radius: 5px;
    }

    body {
      font-family: Verdana, sans-serif;
    }

    .back-link {
      display: inline-block;
      margin: 20px;
      padding: 10px 20px;
      font-size: 16px;
      color: #007bff;
      text-decoration: none;
      border-radius: 5px;
      transition: color 0.3s ease, text-decoration 0.3s ease;
    }

    .back-link:hover {
      color: #0056b3;
      text-decoration: underline;
    }

    .header {
      display: flex;
      align-items: center;
      margin: 20px;
    }

    .title {
      flex-grow: 1;
      text-align: center;
      font-size: 35px;
      font-weight: 600;
      color: #2a6496;
    }