* {
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen,
    ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial,
    sans-serif;
  font-size: 18px;
}

body {
  background-color: #000000;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 95vh;
  width: 95vw; /* This ensures the container spans the full width of the viewport */
  margin: 0 auto; /* Center the container */
  overflow: hidden; /* Ensures no scrolling */
}

.container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* This will ensure your image fits within the container without cropping and maintains its aspect ratio */
}
