* {
  margin: 0;
}

html, body {
height: 100%;
}

.box {
  background-color: lightgrey;
  color: #fff;
  font-size: 150%;
  object-fit: cover;
}

.wrapper {
  width: 100%;
  height: 100%;
  display: grid;
  /* grid-gap: 10px; */
  grid-template-rows: repeat(5, 5fr);
  grid-template-columns: repeat(5, 5fr);
  grid-auto-flow: row;
}

.zoom-wrapper {
  position: fixed;
  bottom: 10px;
  right: 10px;
}

button {
  font-size: 2rem;
}

p {
  font-size: 2rem;
  color: #fff;
}