/*
	Style.css
	----------

	Par JML, le 13/07/2021
*/
@font-face {
    font-family: 'ambleregular';
    src: url('../fonts/Amble-Regular-webfont.eot');
    src: url('../fonts/Amble-Regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Amble-Regular-webfont.woff2') format('woff2'),
         url('../fonts/Amble-Regular-webfont.woff') format('woff'),
         url('../fonts/Amble-Regular-webfont.ttf') format('truetype'),
         url('../fonts/Amble-Regular-webfont.svg#ambleregular') format('svg');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'amblebold';
    src: url('../fonts/Amble-Bold-webfont.eot');
    src: url('../fonts/Amble-Bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Amble-Bold-webfont.woff2') format('woff2'),
         url('../fonts/Amble-Bold-webfont.woff') format('woff'),
         url('../fonts/Amble-Bold-webfont.ttf') format('truetype'),
         url('../fonts/Amble-Bold-webfont.svg#amblebold') format('svg');
    font-weight: normal;
    font-style: normal;

}
body
{
    background-color: #E5D7FA;
}
p
{
    color: blueviolet;
    font-size: 1.1em;
    font-family: ambleregular, "Comic Sans MS";
}

h1
{
	color: cadetblue; 
	font-size: 2.5em;
	font-family: amblebold, "Comic Sans MS" ;
	text-align: center;
    border-left: cadetblue 0.1em solid;
    border-right : cadetblue 0.1em solid;
    border-radius: 2.5em;
    box-shadow: 0.5em 0.5em 1em black ;
    padding: 1em;
    margin: 1em;
}
h2
{
    color: cadetblue; 
    font-size: 1.5em;
    font-family: amblebold, "Comic Sans MS" ;
    text-align: center;
    border-left: cadetblue 0.1em solid;
    border-right : cadetblue 0.1em solid;
    border-radius: 2.5em;
    padding: 1em;
    margin: 1em;
    max-width: 30em;
    margin: auto;
}
a:visited
{
    color : #888888;
}
a:hover
{
    color green;    
}
li:hover
{
    border-left: cadetblue 0.1em solid;
    border-radius: 2.5em;
    background-color: white;
}
figure
{
    text-decoration: bold;
}

ul 
{
list-style-type: none;
}

#conteneur
{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

footer
{
    display:flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    background-color:#0596DE;
    overflow:hidden;
    width:257px;
    height:40px;
    position:fixed;
    bottom:0;
    left:5px;
    border-top-left-radius:10px;
    border-top-right-radius:10px;
    border-bottom-right-radius:none;
    border-bottom-left-radius:none;
}

footer span 
{
    font-size:15px;
    color: white;
}

footer img
{
    height:15px;
}