body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f4f4f4;
  text-align: center;
}
h1 {
  margin-top: 2%;
  margin-bottom: 3%;
  font-size: 20pt;
  font-family: Font1;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  width: 90%;
  max-width: 80%;
}
.gallery img {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}
.gallery img:hover {
  transform: scale(1.1);
}

@font-face {
  font-family: Font1;
  src: url(Sentinel-Medium.otf);
}

.img-text {
  margin-top: 5px;
  font-size: 14px;
  text-align: center;
  color: #333;
}