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

body, html {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.image-container img {
    max-width: 75%; /* Adjust the size */
    max-height: 75%; /* Ensure the image height is not too large */
    display: block;
    object-fit: contain; /* Keep the aspect ratio */
}