body {
  background-color: black;
  color: white;
  font-family: Verdana;
  margin: 0;
  /* overflow-y: hidden;
  overflow-x: hidden; */
}

.page {
  height: calc(100vh - 10px); /* 5px top + 5px bottom */
  margin-top: 10px;
  margin-left: 0px;
  border: 5px solid #E0943B;
  border-radius: 8px;
  box-sizing: border-box;
  position: relative;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 10px;
  padding: 10px;
}

.gallery img {
  width: 100%;
  height: auto;
  display: block;

  border: 3px solid #E0943B;
  border-radius: 6px;
}
