.body {
  font-family: Gotham;
}

.flexbox-container {
  display: flex;
  justify-content: strecth;
  align-items: flex-start;
  flex-wrap: wrap;
}

.item {
  flex: 1 1 300px;
  text-align: center;
  margin: 10px;
  border: 1px solid #ccc;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: calc(25% - 20px); /* Adjust the percentage value as needed */
  align-self: stretch;
}

.item:last-child {
  flex-basis: calc(100% - 20px); /* Adjust the value as needed */
}

.item .image-wrapper {
  cursor: pointer;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
  
}

.item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.description {
  margin-top: 12px;
  text-align: left;
  padding: 10px;
}

.title {
  font-weight: bold;
  margin-top: 12px;
  text-align: left;
  padding: 10px;
}

.hyperlink {
  margin-top: -10px;
  text-align: left;
  padding: 5px;
}

.hyperlink-list {
  list-style-type: none;
  padding: 0;
  margin-top: 5px;
}

.hyperlink-list li:before {
  content: "|";
  margin-right: 5px;
  margin-left: 5px;
  font-weight: bold;
  color: lawngreen;
}

.hyperlink-list li {
  display: inline-block;
  margin-right: 10px;
}

.hyperlink a {
  text-decoration: none;
}

ul {
  list-style-type: none;
  padding: 0;
  margin-top: 5px;
}

ul li {
  display: inline-block;
  margin-right: 10px;
}

.hyperlink a {
  text-decoration: none;
}

/* Media Queries */
@media screen and (max-width: 768px) {
  .flexbox-container {
    justify-content: flex-start;
  }

  .item {
    flex-basis: 100%;
    max-width: 100%;
  }
}

#bold {
  font-weight: bold;
  color: black;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #56AD3F;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#myBtn:hover {
  background-color: #555;
}

.clickable {
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  position: absolute;
  z-index: 1;
}

/* Media query for screens with a maximum width of 767px (typical for mobile devices) */
@media (max-width: 767px) {
  img.mfp-img {
    padding: 20px 0 20px; /* Adjust the padding for mobile */
  }
}