html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;

    /* Sfondo */
    background: url("bg.jpg") center center / cover no-repeat fixed;

    /* Contenuto centrato */
    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
}

/* Immagine sopra lo sfondo */
body img {
    display: block;
    max-width: 100%;
    max-height: 100vh;
    width: auto;
    height: auto;
}