/* HAUT DE PAGE */
*{
    font-family: "arial", sans-serif; 
    margin: 0;
}
a:hover{
    text-decoration: underline; 
    font-style: italic; 
    color: darkblue;
}
body{
    background-color: #6A80B9;
}
.actuel{
    color: darkblue;
    background-color: rgba(255,255,255,0.5);
    padding: 0.3em 1em;
    border-radius: 0.5em;
}

header{
    display: flex; 
    flex-wrap: wrap; 
    align-items: center; 
    justify-content: space-between; 
    padding: 1em;
}
nav a{
    text-decoration: none; 
    font-size: 1.2em; 
    color: darkred; 
    margin: 0.5em 1.5em; 
    font-weight: bold;}

.heading{
    background-size: cover; 
    background-position: center;
}
h1{
    text-align: center; 
    color: white; 
    background-color: rgba(0,0,0,0.3); 
    padding-top: 20vh; 
    padding-bottom: 20vh;
}

/* PIED DE PAGE */
footer{
    display: flex; 
    flex-wrap: wrap; 
    align-items: center; 
    justify-content: space-between; 
    padding: 1em; 
    background-color: #FFF6B3;
}
address p{
    color: #155E95; 
    font-style: normal; 
    font-size: 90%; 
    padding-bottom: 0.3em;
}
address a{
    color: darkcyan; 
    text-decoration: none;
}
address a:hover{
    color: black;
}