/* Resetting default margin and padding */
body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
}

/* Centering the image */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Full viewport height */
  background-color: #f5f5f5; /* Optional background color */
}

img {
  max-width: 100%;
  max-height: 100%;
  /* Optional styling for the image */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Shadow */
}
