body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1.3s ease-in-out;
    transform: scale(0.8);
}

.image-slide.active {
    opacity: 1;
    transform: scale(1);
}

.image-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
