body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align to the top */
}

.container {
    width: 100%;
    display: flex;
    justify-content: center;
}

img {
    width: 100%;  /* Set the width to 100% of the container */
    height: auto; /* Maintain aspect ratio */
    max-width: 100%; /* Prevent image from exceeding its natural width */
}
