body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    filter: blur(10px) brightness(50%);
    z-index: -1;
    transform: scale(1.1);
}

#image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#main-image {
    max-width: 60%;
    max-height: 80%;
    object-fit: contain;
}
#image-container img {
/*    position: absolute; */
/*    top: 0; */
/*    left: 0; */
/*    width: 100%; */
/*    height: 100%; */
    object-fit: cover;
    transition: opacity 0.5s ease; /* Add transition for opacity */
}

#image-container img.fade-in {
    opacity: 1;
}

#image-container img.fade-out {
    opacity: 0;
}

