html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    background-color: black; /* Set the page background to black */
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: black; /* Set the container background to black */
}

.fade-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 3s ease-in-out;
    background-color: black; /* Set the image background to black */
}

.fade-image.visible {
    opacity: 1;
}
