
body {
    padding: 0;
    margin: 0;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; 
}

.container {
    text-align: center;
    padding: 20px;
}

.container img {
    width: 700px;
    height: 500px;
    max-width: 100%;
    height: auto;
}


@media (max-width: 768px) {
    body {
        flex-direction: column;
        height: 100vh;
        padding: 0;
    }

    .container {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        padding: 0;
    }

    .container img {
        width: 90%;
        height: auto;
    }
}
