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

html, body {
  height: 100%;
  width: 100%;
  background-color: white;
}

.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Full screen height */
  background-color: #000; /* Optional: black background for contrast */
}

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