* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
}

.image-container {
    width: auto;
    height: 100vh; /* 100% of the viewport height */
    overflow: hidden; /* To crop the image if necessary */
    display: flex;
    justify-content: center;
}

.image-container img {
    height: 100%; /* Keep the height 100% of the viewport */
    object-fit: cover; /* Crops the image while maintaining aspect ratio */
}
