﻿.Slidesbackground {
    margin: 0;
    padding: 0;
}

.slideshow-image {
    border-radius: 3%;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.mySlides-1 {
    border-radius: 3%;
    width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.5);
}

.mySlides-2 {
    border-radius: 3%;
    width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.5);
}

.mySlides-3 {
    border-radius: 3%;
    width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.5);
}

.mySlides-4 {
    border-radius: 3%;
    width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.5);
}

.slideshow-container {
    display: flex;    
    justify-content: center;
    position: relative;
    margin: auto;
}

.fade {
    animation-name: fade;
    animation-duration: 0.2s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}
