body {
    overflow-x: hidden;
    overflow-y: scroll;
}

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

img {
    max-width: 80%;
    max-height: 80%;
}

/* For screens smaller than or equal to 1200px */
@media (max-width: 1200px) {
    .image-container {
        height: auto;
    }
}
