/* Reset basic browser defaults */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #000; /* optional */
}

/* Image container */
.image-wrapper {
    width: 100%;
    max-width: 1024px; /* original image width */
    padding: 16px;
}

/* Responsive image */
.image-wrapper img {
    width: 100%;
    height: auto; /* keep aspect ratio */
    display: block;
}
