#slideshow {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
}

.slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.slide:nth-child(1) {
    background-image: url(/static/images/table_0.JPG);
}

.slide:nth-child(2) {
    background-image: url(/static/images/table_1.JPG);
}

.slide:nth-child(3) {
    background-image: url(/static/images/table_2.JPG);
}

.image-table tr:nth-child(1) td:nth-child(1) {
    background-image: url(/static/images/little_passing_thoughts_0.JPG);
}

.image-table tr:nth-child(1) td:nth-child(2) {
    background-image: url(/static/images/letters_0.JPG);
}

.image-table tr:nth-child(2) td:nth-child(1) {
    background-image: url(/static/images/little_passing_thoughts_0.JPG);
}

@media (max-width: 1024px) {
    #slideshow {
        aspect-ratio: 1;
    }
}