/* Body */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background-color: white;  
}

/* Image container */
.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;  
    height: 100%;  
}

/* Image */
img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}