/* Reset default margins and padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
}

.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
  max-height: 90vh;
  object-fit: contain;
}

/* Responsive breakpoints */
@media screen and (max-width: 768px) {
  img {
    max-width: 95%;
    max-height: 80vh;
  }
}

@media screen and (max-width: 480px) {
  .image-container {
    padding: 10px;
  }

  img {
    max-width: 100%;
    max-height: 70vh;
  }
}
