body, html {
    margin:0;
    height: 100%;
    font-family: "Montserrat";
    background-color: #fafafa;
}

.acceuil {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    height: 100%; 
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Body content */

.content {
    display: flex;
    flex-direction: column;
    margin:0px 15% 7% 15%;
}

.Titre {
    margin: 5% 0px 5% 0px;
    text-align: center;
}

.content p {
    margin: 10px 0px 10px 0px;
}


/*responsive*/
@media screen and (max-width: 1060px){
    .footer-col{
        margin-bottom: 30px;
    }
    .row{
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 574px){
    .footer-col{
        width: 90%;
    }
    .row{
        display: grid;
        grid-template-columns: 1fr;
    }
}