/* Make the whole page black */
body {
  margin: 0;
  height: 100vh;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Optional: scale image nicely */
img {
  max-width: 90%;
  max-height: 90%;
  /*object-fit: contain;*/
}
