#fond_accueil {
    background-image: url('../img/Background/background_accueil.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    position: absolute;
    width : 100%;
    height : 100%;
    z-index: -1;
    pointer-events: none;
}

#body_accueil{



    background-color: transparent;

    width : 100vw;
    height : 100vh;
    
    display : flex;
    justify-content: end;
    flex-direction: column;
    text-align: center;

    align-items: center;

    
    color : var(--dore_background);


}

#body_accueil h1{
    
    font-size: 5vw;
    background-color: var(--main_background);
    color: var(--dore_background);
    border-radius: 5px;
    padding-left : 0.5vw;
    padding-right : 0.5vw;
}

#body_accueil h3{

    margin-top: 2vw;
    margin-bottom: 3vw;
    font-size: 3vw;
}

 #body_accueil button{

    background-color: var(--main_background);
    z-index: 10;

 }

 #body_accueil h1, #body_accueil h3, #body_accueil button {
    pointer-events: auto; /* Active les événements de souris pour ces éléments */
}

@media only screen and (max-width: 768px), (orientation: portrait) {

    #body_accueil h1{

        font-size: 10vw;
    }
    
    #body_accueil h3{

        font-size: 6vw;
    }
    



}