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

body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

#photo {
  max-width: 100vw;
  max-height: 100vh;
  object-fit: contain;
  cursor: pointer;
}