* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    background-color: #000; /* Fallback color */
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.responsive-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Ensures the image covers the area nicely */
}

/* Mobile optimization */
@media (max-width: 768px) {
    .container {
        align-items: flex-start; /* Align to top on mobile if needed */
    }
    
    .responsive-image {
        min-height: 100vh; /* Ensure it takes full height on mobile */
        object-fit: cover;
        object-position: center;
    }
}
