/* Définition des polices de caractères */
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

/*
font-family: 'Roboto', sans-serif;
*/

body{
    font-family: 'Roboto', sans-serif;
    color: white;
    background: url(img/fond_gris.png);
}

#main{
    width: 900px;
    margin: auto;
}

h1{
    text-align: center;
    text-transform: uppercase;
    font-size: 2.2em;
}

nav ul{
    display: flex;
    justify-content: center;
    list-style-type: none;
    
}

nav li{
    margin: 10px;
}

nav a{
    color: white;
    text-decoration: none;
    font-size: 1.4em;
    
}

nav a:hover {
    border-bottom: 3px solid #000000;
}

#profil{
    float: left;
    width: 150px;
}

#EtatCivil p, li{
    line-height: 30px;
}

h2 {
    font-size: 1.5em;
    text-decoration: underline dotted;
    padding-top: 15px;
}

a{
    color: white;
}
a:hover{
    text-decoration: none;
}

blockquote {
    font-style: italic;
}

h3 {
    font-size: 1.3em;
}

table {
    width: 100%;
}

td, th {
    border: 1px solid #FFFFFF;
    text-align: center;
    padding: 5px;
}

th {
    background-color: #FFFFFF;
    color: #000000;
    text-transform: uppercase;
}

ul {
    list-style-type: "\1F449";
}

footer p {
    text-align: right;
    font-size: 12px;
    font-style: italic;
}












