body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    text-align: center;
}

.image-container {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    width: 100%;
    height: auto;
}


@media (max-width: 600px) {
    .image-container img {
        width: auto;
        height: 100%;
        max-height: 300px; /* Adjust this value as needed */
    }
}
