.slide {
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 0%;
    display: flex;
    justify-content: space-around;
}


#homeslide {
    object-fit: cover;
    float: left;
    width: 32%;
    height: 40vw;
    padding: 5px;
}


/* The dots/bullets/indicators */

.dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}


/* Fading animation */

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.0s;
    animation-name: fade;
    animation-duration: 1.0s;
}

@media screen and (max-width: 600px) {
    .slide {
        width: 90%;
        margin-top: 15%;
        margin-left: 5%;
        margin-right: 5%;
        margin-bottom: 0%;
        display: flex;
        object-fit: scale-down;
        justify-content: space-around;
    }
}