body {
  background-color: #191919;
  margin: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (prefers-color-scheme: light) {
  body {
      background-color: #E6E6E6;
  }
}

.img-container {
  width: 75vw;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
