* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
}

.fullscreen-image {
    width: 100%;
    height: 100%;
    display: flex;
}

.fullscreen-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the screen without distortion */
}
