
#info{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;   
}
.intro{
    position: relative;
    top: 160px;
    text-align: center;
}
.blinking {
    animation: blink 1s step-end infinite;
}
@keyframes blink {
    from, to {
        visibility: hidden;
    }
    50% {
        visibility: visible;
    }
}

@media (max-width: 768px){
    .intro{
        position: relative;
        top: 100px;
        text-align: center;
        padding-left: 0px;
    }

    #commentaire{
        margin-bottom: 50px;
    }

    /* #info #infoContact{
        border-radius: 5px;
        box-shadow: 1px 1px 5px grey;
        padding: 30px;
    } */
}
@media (max-width: 990px){
    #info{
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
    }
    /* #info img{
    display: none;
    } */
    /* #info #infoContact{
        margin: auto;
        width: 75%;
    } */
}