body {
    background-color: #000;
    overflow: hidden;
}

.image-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.image-container img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .image-container {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .image-container {
        padding: 30px 15px;
    }
}
