html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #ffffff;
}

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

.container img {
    max-width: 50vw;  /* massimo metà schermo */
    width: auto;      /* non forzare ingrandimento */
    height: auto;     /* mantiene proporzioni */
    display: block;
}