/*
#home {
    background-image: url('../img/home.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Ajoute d'autres propriétés CSS selon tes besoins 
}
/*
#home .signature-home {
    display: block;
    margin: 15px auto; /* Espace au-dessus et en dessous 
    max-width: 200px; /* Réduis cette valeur (ex. 120px, 100px, etc.) 
    height: auto; /* Garde les proportions 
}
*/

#home {
    min-height: calc(100vh - 80px);
    position: relative;
    padding-bottom: 100px; /* Espace pour le footer */
    background-image: url('../img/home.jpg');
    background-size: cover;
    background-position: center;
}

#home h1 {
    position: absolute;
    bottom: 12vh; /* Distance entre le bas de #home et le h1 */
    width: 100%;
    text-align: center;
    color: white;
    margin: 0;
}

#home .signature-home {
    position: absolute;
    bottom: -3vh;
    left: 50%;
    transform: translateX(-50%);
    max-width: 200px;
}