/* Dark gray background and full height */
body {
    margin: 0;
    background-color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Image container */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive image */
.responsive-image {
    width: auto;
    max-height: 1080px;
    height: 100%;
    aspect-ratio: 1650 / 1080;
}