* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

.image-container {
    width: 100%;
    height: 100%;
    overflow: hidden; /* Ensure no overflow */
}

.full-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintain aspect ratio while covering the entire container */
}
