/* General */
body {
    background-image: url('../img/fond/flou/rue.jpg');
}

@keyframes slideIn {
    0% { margin-left: 0; margin-right: 400px; opacity: 0; }
    100% { margin-left: 200px; margin-right: 200px; opacity: 1; }
}

main {
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
}

/* Éléments */
#description {
    animation: slideIn 3s;
    margin: 0 200px;
    padding: 15px 0;
    font-size: large;
    color: white;
    line-height: 25px;
    letter-spacing: 0.2em;
}

img {
    animation: fadeIn 5s;
    animation-iteration-count: 1;
    max-width: 450px;
    max-height: 250px;
    margin: 30px auto;
    border-radius: 5px;
    box-shadow: 0 0 15px black;
}

/* Responsive */
@media screen and (max-width: 800px) {
    img {
        max-width: 350px;
        max-height: 150px;
    }

    #description {
        animation: none;
    }

    #description {
        margin: 0 20px;
    }
}