* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  background-color: black;
  overflow: hidden;
  cursor: pointer;
}

#photo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

#main-photo {
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center; /* This will later be adjustable per image */
  transition: opacity 0.5s ease;
}