body {
    background: url('../image_du_site/State_of-decay_2.jpg') no-repeat fixed;
    background-size: cover;
    margin: 0em;
    justify-content: center;
    align-items: center;
    background-position: center;
}

#bg {
    width: 100%;
    height: 90%;
}

.images {
    display: flex;
    animation-duration: 20s;
    animation-name: mesImages;
    animation-iteration-count: infinite;
}

#caroussel {
    width: 100%;
    overflow: hidden;
    border: 0.1em solid #333;
}

@keyframes mesImages {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-1200px);
    }

    50% {
        transform: translateX(-2400px);
    }

    75% {
        transform: translateX(-3600px);
    }

    100% {
        transform: translateX(0);
    }
}

.image {
    text-align: center;
}