*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#fotosCarrusel {
    height: 600px;
    overflow: hidden;
}

.container-carrusel {
    height: 100%;
    position: relative;
}

.carrusel {
    background-color: aqua;
    height: 100%;
}

@keyframes animate {
    0% {margin-left: 0;}
    20% {margin-left: 0;}

    25% {margin-left: -100%;}
    45% {margin-left: -100%;}

    50% {margin-left: -200%;}
    70% {margin-left: -200%;}

    75% {margin-left: -300%;}
    100% {margin-left: -300%;}
}

.flechas-carrusel {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

#carrusel-1 {
    background-color: blueviolet;
}

#carrusel-2 {
    background-color: rgb(93, 48, 216);
}

#carrusel-3 {
    background-color: brown;
}

#carrusel-4 {
    background-color: rgb(132, 165, 42);
}

a {
    text-decoration: none;
}

i {
    color: rgb(251, 251, 252);
}

.img-car {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body {
    background-color: aqua;
}

