/*
* Généralités
*/

@font-face {
    font-family: myFirstFont;
    src: url(../fonts/leadcoat.ttf);
  }

  h1{font-family: myFirstfont;}

* {box-sizing: border-box;}
body{background-color: powderblue !important;}


main{
    width: 80%;
    max-width: 1000px;
    min-width: 500px;
}
h1{width: 80%; margin: 0 auto; padding: 0px 20px;}
h2{padding: 20px 10px 10px;}
p{padding:  0px 10px 5px;}
img{max-width: 100%;}

/*
* Galerie
*/

.coro{clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);}
.sard{clip-path: circle(20%);}
.alde{clip-path: ellipse(130px 140px at 10% 20%);}

/*
* Menu Header
*/

#menu_nav
{
	text-align: right;
	color: black;
	height: 5em;
}
#ul_menu_nav
{	
	height: 100%;
	border-top: solid darkblue;
}
#ul_menu_nav .li_menu_nav
{
	display: inline-block;
	height: 50%;
}
#ul_menu_nav a 
{
	text-decoration: none;
	font-weight: bold;
	font-family: sherif;
	font-size: 15pt;
	border-bottom-left-radius: 0.5em;
	border-bottom-right-radius: 1em;
	display: block;
	height: 100%;
	padding: 0.8em 0.8em 1.7em 0.8em;
	text-align: left;
	font-variant: small-caps;
	background-color: cornflowerblue;
}
#ul_menu_nav a:hover,#ul_menu_nav>li:hover a
{
	border-radius: 0;
}
#ul_menu_nav .a_menu_nav_a_propos,#ul_menu_nav .a_menu_nav_a_propos:visited
{
	background-color: orange;
}

.infobulle
{
	display: none;
}
a:hover .infobulle
{
	display: block;
	position: absolute;
	margin-top: 0.7em;
	margin-left: -11em;
	width: 10%;
	color: black;
	background-color: #F8F8A4;
	border-radius: 0.3em;
}

.ul_deroulant
{
	display: none;
	list-style-type: none;
}
.ul_deroulant li
{
	margin: 0;
	padding: 0.4em;
	background-color: cornflowerblue;
}
.ul_deroulant li:first-child
{
	border-top-right-radius: 0.5em;
}
.ul_deroulant li:last-child
{
	border-bottom-right-radius: 1em;
	border-bottom-left-radius: 1em;
}
#ul_menu_nav .ul_deroulant li a
{
	margin: 0;
	padding: 0.5em;
	border-radius: 0;
	font-size: 90%;
	color: black;
	display: block;
}
#ul_menu_nav .ul_deroulant li a:hover
{
	background-color: blue;
	border: 1px solid blue;
	border-radius: 1em;
}
.li_menu_nav:hover .ul_deroulant
{
	display: block;
	position: absolute;
	margin-left: -2.5em;
}
#ul_menu_nav:hover .li_menu_nav:not(:hover)
{
	opacity: 0.3;
}

/*
* Date footer
*/

.date{float: right;}

/*
* Responsive
*/

@media screen and (max-width: 640px) {
    main{
		width: 100% !important;
	}
}