body, html {
    height: 100%; /* Ensures the container takes the full screen height */
    margin: 0;
    padding: 0;
}

.center-container {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center;     /* Centers vertically */
    height: 100%;            /* Takes full height of the body */
    width: 100%;
}

img {
    max-width: 100%; /* Ensures the image is responsive and doesn't overflow its container */
    height: auto;    /* Maintains the image's aspect ratio */
}