main {
  padding-top: 180px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  font-family: "Caps_Regular";
}

.background_image {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: -1;
}

.header_text {
  display: flex;
  flex-direction: column;
  gap: 45px;
  text-align: center;
  position: relative;
}
.header_text h1 {
  color: var(--white-color);
  position: relative;
}
.header_text h2 {
  color: var(--paragraph-color);
  font-size: 16px;
  line-height: 22px;
  font-weight: 200;
  letter-spacing: 0.5px;
}

.gallery_list {
  display: flex;
  gap: 20px;
  position: relative;
  flex-wrap: wrap;
  margin-top: 100px;
  justify-content: center;
}

.gallery_card {
  height: 400px;
  min-width: 300px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.gallery_card:hover img {
  scale: 1.1;
}
.gallery_card img {
  top: 0;
  left: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: scale 0.2s;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.popup img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.popup-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  color: white;
  cursor: pointer;
}

.popup.hidden {
  display: none;
}

@media (max-width: 648px) {
  .gallery_card {
    width: 100%;
  }
}/*# sourceMappingURL=gallery.css.map */