html {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

body {
  padding: 0;
  margin: 0;
  overscroll-behavior-y: none;
}

.img-gallery-container {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10vh;
}

.img-gallery-container.order {
  display: grid;
  justify-content: stretch;
  grid-auto-flow: row;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
}

.img {
  position: relative;
  margin-bottom: 1em;
  width: 400px;
  height: 500px;
  overflow: hidden;
}

.img.reorder {
  position: fixed;
  top: 0;
  margin: 1em;
  width: 150px;
  height: 200px;
  margin-bottom: 0em;
}

img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  bottom: 0;
}

.btn {
  width: 10em;
  height: 5em;
  z-index: 60;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: "Neue Montreal";
}
