@import url(./colors.css);
@import url(./mobile_screen_adapt.css);
@import url(./fonts.css);
* {
    box-sizing:border-box;
    margin:0
}
/* fontes à utiliser*/
/* tout ce qui concerne le header */
header {
    h1 {
        font-family : lato;
    }
    #headright {
        font-family : raleway;
    }    
    }
header div {
    position: relative;
} 
header figure, header div {
    margin: 2px;
}
.menuNL {
    display:flex;
    flex-direction: column;

}
#campagne {
    text-align: left;

}
    

@media screen and (min-width:150px) {
    .menuNL button {
        width: 120px;
        height: 30px;
        background-color: var(--green);
        color: white;
        gap: 30px;
        border:0;
        margin-top: 5px;
    }


        .menuNL {
            font-size: 15px;
        }

}
@media screen and (min-width:768px) {
    .menuNL button {
        width: 120px;
        height: 60px;
        background-color: var(--green);
        color: white;
        gap: 30px;
        border:0;
        margin-top: 5px;
    }


        .menuNL {
            font-size: 25px;
        }

}
@media screen and (min-width:1024px) {
    .menuNL button {
        width: 140px;
        height: 80px;
        background-color: var(--green);
        color: white;
        gap: 30px;
        border:0;
        margin-top: 5px;
    }


        .menuNL {
            font-size: 30px;
        }

}


#titre {
    display:flex;
    flex-direction: column;
    width:auto;
}


/* Fin de ce qui concerne le header */
/* Tout ce qui concerne le body */
body {
    position:relative;
    background-color: var(--pal-bg) ;
}

#event1, #event2,#event3,#gallery,#event0 {
    background-color: var(--pal-bg);
    margin: 5px;
    border-radius: 30px;
    border-color: var(--pal-police);
    box-shadow: 2px 2px 2px 2px var(--pal-police);
}
main h1 {
    font-family: lato;
    color: var(--pal-police);
}
main h2 {
    font-family: lato;
    color: var(--pal-police);
}
main p {
    font-family: raleway;
    color: var(--pal-police)
}
section {
    margin-bottom: 5px;
}
h2 {
    text-align:left;
}
#gallery {
    height: 200px;
}


/* tout ce qui concerne le footer */

footer {
    display : flex;
    flex-direction: row;
    font-family: raleway;
    font-style:italic;
    font-size: 12px;
    position:sticky;
    line-height: 30px;
    text-align: center;
    bottom:0;
    left:0;
    }
footer a {
    padding-left: 5px;
}
/* fin de ce qui concerne le footer */



figcaption {
    font-family: raleway;
    text-align: center;
}
#event0 figure {
    width:100%;
}
#event0 p, #event1 p,#event2 p,#event3 p
    {hyphens: auto;}
