* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

.image-container {
    width: 100%;
    max-width: 500px;
    /* Assuming mobile-first/H5 like previous request */
    margin: 0 auto;
}

.full-img {
    width: 100%;
    height: auto;
    display: block;
}