* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
}

.image-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Prevent overflow */
}

.image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This ensures the image covers the entire container while maintaining aspect ratio */
}

/* Mobile view */
@media (max-width: 768px) {
    .image {
        width: 100%;
        height: 100vh; /* Full height for mobile screens */
        object-fit: cover; /* Ensures the image maintains aspect ratio while covering the screen */
    }
}
