body{
    margin:0;
    background:#e6eff3;
    font-family: sans-serif;
}

h1{
    text-align: center;
    margin-top: 5%;
    font-size: 3em;
}
h2{
    margin-left: 10vw;
}
hr{
    width: 50vw;
    margin: 5% auto;
}

#campings,#activites{
    width: 80vw;
    margin-left: 10vw;
    display: flex;
    justify-content: space-between;
}

section{
    background:white;
    width: 25%;
    padding: 2em;
    margin: 2%;
    border-radius: 10px;
    filter:drop-shadow(0px 2px 1px rgba(0,0,0,.2));
    transition: all ease-in-out .2s;
    cursor: pointer;
}
section:hover,.btn:hover{
    transform: translateY(-5px);
    filter:drop-shadow(0px 7px 4px rgba(0,0,0,.2));
}

.header-box{
    display: flex;
}
.header-box img{
    height: 50px;
    margin-right:1em;
}

.link-tache{
    color: lightseagreen;
    font-size: 1.5em;
    transition: all ease-in-out .2s;
}
.link-tache:hover{
    color: pink;
}

/*css lightbox*/
.overlay {
    display: none;
    position: fixed;
    background-color: rgba(0, 0, 0, .5);
    width: 100vw;
    height: 100vh;
    z-index: 1;
    top: 0;
    left: 0;
}
.overlay p{
    margin: 0 2vw;
    color:#fff;
    font-size: 1.5em;
    cursor: pointer;
}
iframe {
    background-color: #fff;
    height: 90vh;
    width: 90vw;
    margin: 1vh 5vw;
    border-radius: 10px;
    box-shadow: 5px 5px 15px 0px rgba(0, 0, 0, .3);
    overflow: hidden;
    transform: scale(0, 0);
    transition: all ease-in-out 0.25s;
}

/*css formulaires*/
#formulaires{
    display: none;
}
#formulaire-spinout{
    background-color:#02b0e6;
}
#formulaire-divin{
    background-color:#64c2bf;
}
#formulaire-aphrodite{
    background-color:#da3b44;
}
#formulaire-kgg{
    background-color:#23e3ea;
}
#formulaire-spinout,#formulaire-divin,#formulaire-aphrodite,#formulaire-kgg{
    width: 70%;
    margin-left: 10%;
    border-radius:10px;
    padding: 5%;
    font-family: sans-serif;
    font-size: 2em;
    color:#fff;
    transition: all ease-in-out .25s;
}

.close{
    text-align: right;
    margin-right: 10%;
    font-size: 1.5em;
    cursor: pointer;
    transition: all ease-in-out .25s;
}
.close:hover{
    color:rgba(0,0,0,.5);
}
.btn{
    text-align: center;
    width: 10%;
    margin: 5% 0 0 85%;
    padding: 15px;
    border-radius: 5px;
    background:rgba(255,255,255,1);
    filter:drop-shadow(0px 2px 1px rgba(0,0,0,.2));
    color:#000;
    transition: all ease-in-out .25s;
    cursor: pointer;
}





@media(max-width: 680px) {
    
    .paragraphe-lightbox {
        display: block;
    }
    
    .img-apercu-lightbox {
        background-color: #fff;
        border: solid 5px #fff;
        box-shadow: 3px 3px 10px 3px rgba(0, 0, 0, 0.3);
        margin: -50px 0 0 2%;
        width: 50%;
    }

    .body-lightbox h1,.body-lightbox hr {
        margin: 0 5%;
    }

}