body {
    margin: 0;
    background-image: url("../img/domenico-loia-hGV2TfOh0ns-unsplash.jpg");
    background-size: 100%;
    background-repeat: no-repeat;
    background-color: rgb(45, 44, 44);
    display: grid;
    grid-template-rows: 1fr auto 1fr;
    height: 100vh;
    font-family: 'Montserrat', sans-serif;
}

/* Img header  */
header {
    /* position: relative; */
    margin-bottom: 10%;
    min-height: 100vh;
    /* border-bottom: 20px solid #fff; */
}

/* Le header responsive  */
/* @media only screen and (min-width: 1920px) {
    h1 {
        position: absolute;
        top: 30vh;
        left: 98vh;
    } */
/* 
    h2 {
        position: absolute;
        top: 50vh;
        left: 98vh;
    }
} */

.head {
    width: 100%;
    /* border-bottom: 20px solid #fff; */
}

.titrebouton {
    display: grid;
    align-items: center;
}

/* Titres  */
h1 {
    font-family: 'Playfair Display SC', serif;
    /* position: absolute;
    top: 30vh;
    left: 58vh; */
    font-weight: initial;
    color: white;
    font-size: 60pt;
    margin: 15% auto 0 auto;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    color: white;
    /* position: absolute; */
    font-weight: initial;
    margin: 5% auto 0 auto;
    /* top: 50vh;
    left: 58vh; */
}

h3 {
    font-family: 'Playfair Display SC', serif;
    display: inline-block;
    font-weight: initial;
    font-size: 30pt;
    margin-bottom: 0px;
}

h4 {
    font-family: 'Playfair Display SC', serif;
    font-weight: initial;
    font-size: 20pt;
    align-items: center;
}

/* Les liens  */
header > .titrebouton >a {
    color: black;
    margin: 2% auto;
}

/* animation du h3  */
.anim {
    border-top: 3px solid #fff;
    max-width: 50px;
    transition-duration: 0.4s;
}

h3:hover+.anim {
    border-top: 3px solid #fff;
    max-width: 470px;
    transition-duration: 0.4s;
}

/* Le bouton du header  */
.boutonhead {
    /* position: absolute;
    top: 65vh;
    left: 78vh; */
    background: #FFF;
    padding: 10px 15px 10px 15px;
    border-radius: 20px;
    transition-duration: 0.4s;
    margin: auto;
}

.boutonhead:hover {
    box-shadow: 6px 5px rgb(86, 78, 78);
    transition-duration: 0.4s;
    font-weight: bold;
}


/* Le smooth scroll  */
html {
    scroll-behavior: smooth;
}

/* le contenu  */
main {
    color: white;
    margin: 20px;
}

/* Les boutons pour les liens de sites  */
button {
    background: white;
    border: none;
    padding: 10px 15px 10px 15px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    margin-right: 2%;
}

button:hover {
    box-shadow: 6px 5px rgb(86, 78, 78);
    transition-duration: 0.4s;
    font-weight: bold;
}

.lien {
    margin: 5% 0% 5% 0%;
    grid-row: span 2;
}

.debut {
    /* display: flex;
    justify-content: space-between;
    gap: 200px; */
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    margin-bottom: 100px;
}

/* La boite en savoir plus  */
.plus {
    background: #b9aca4;
    color: black;
    padding: 0px 30px 30px 30px;
    border-radius: 20px;
}

.titreplus {
    display: flex;
    gap: 20px;
    align-items: center;
    cursor: pointer;
}

/* transition ouvert fermer  */

.fermer {
    display: none;
}

.ouvert+.texte {
    display: block;
    text-align: justify;
}

/* La croix  */
.croix {
    position: absolute;
    top: 115%;
    right: 5%;
    display: none;
    cursor: pointer;
}

/* La flèche  */
.ouvert .fleche {
    transform: rotate(180deg);
}

.fleche {
    transition-duration: 0.4s;
}

.titrebout {
    flex: none;
}

/* Le footer  */
footer {
    color: white;
    padding: 20px;
    text-align: center;
}