@font-face {
  font-family: "Pink Blue";
  src: url("../assets/fonts/Pink Blue.ttf") format("truetype");
  font-weight: normal;
}

@font-face {
  font-family: "Readex Pro";
  src: url("../assets/fonts/ReadexPro.ttf") format("truetype");
}

@font-face {
  font-family: "Intruding Cat";
  src: url("../assets/fonts/IntrudingCat.ttf") format("truetype");
  font-weight: normal;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Readex Pro", sans-serif;
  overflow: hidden;
}

.popup {
  position: fixed;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
  background-color: #3f5be3;
  color: #fff;
  text-align: center;
  font-size: 24px;
}

.popup.hidden {
  display: none;
}

.popup p {
  max-width: 600px;
}

.popup button {
  margin-top: 24px;
  outline: none;
  border: none;
  background-color: #fff;
  color: #3f5be3;
  padding: 12px 24px;
  cursor: pointer;
  border-radius: 8px;
  min-width: 200px;
  font-family: "Readex Pro", sans-serif;
  font-size: 16px;
  font-weight: 500;
}

@media screen and (min-width: 800px) {
  .size-warning {
    display: none;
  }
}

body {
  background-color: white;
  min-height: 100vh;
  overflow: scroll;
}

.gallery-container {
  width: fit-content;
  min-width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .gallery-container {
    align-items: flex-start;
  }
}

.gallery-container .gallery-image {
  max-width: 100%;
  height: auto;
  background-color: white;
  user-select: none;
  -webkit-user-drag: none;
  display: block;
}

.back-button {
  position: fixed;
  top: 30px;
  left: 20px;
  z-index: 100;
  background-color: #3f5be3;
  color: black;
  padding: 15px 30px 15px 40px;
  text-decoration: none;
  font-family: "Intruding Cat", sans-serif;
  font-size: 24px;
  font-weight: normal;
  clip-path: polygon(20px 0, 100% 0, 100% 100%, 20px 100%, 0 50%);
  filter: drop-shadow(-2px 4px 6px rgba(0, 0, 0, 0.3));
  transition: transform 0.2s ease;
  transform: rotate(-2deg);
}

.back-button:hover {
  transform: rotate(-2deg) scale(1.05);
}

.back-button:active {
  transform: rotate(-2deg) scale(0.95);
}

@media (max-width: 768px) {
  .back-button {
    top: 20px;
    left: 10px;
    font-size: 20px;
    padding: 10px 20px 10px 30px;
    clip-path: polygon(15px 0, 100% 0, 100% 100%, 15px 100%, 0 50%);
  }
}

/*# sourceMappingURL=gallery.css.map */