li{
    display: flex;
    padding: 4px;
}

a{
    text-decoration: none;
    color: cadetblue;
    text-decoration-color: lightgray;
    padding: 10px;
}

a:hover{
    background-color:antiquewhite;
    color:darkgoldenrod;
    border-radius: 20px;
}


@media all and (min-width: 200px) and (max-width: 500px){
    body{
        font-size: 20px;
    }
}


/* Centrer les éléments*/
.FTindex{
    position: static;
    top: 50;
}

h1{
    font-family: "Ma police", "Times", serif;
    /* On veut mettre un cadre coloré au titre. */
    border-color: rgb(40, 43, 200);
    /* Par défaut, le cadre est invisible ; on le rend visible. */
    border-style: dashed solid;
    /* On centre le texte dans le cadre. */
    text-align: center;
    margin : 10px 70px 10px 70px;
    padding: 5px 5px 5px 5px;
    background-color: #f7f0de;
}

h2{
    text-align: center;
    text-decoration: underline;
}

h3{
    text-align: center;
    text-decoration: underline dotted;
}

nav li {
	display: block;
	list-style: none;
    text-align: center;
}
/*footer*/
#date{
    position:absolute;
    bottom: 0px;
}
#name{
    position:absolute;
    bottom: 0px;
}

/*
@font-face {
    font-family: "Ma police";
    src: url("../fonts/Josefin.ttf");
}
*/

blockquote{
    background-color:lightgray;
    border-radius: 5px;
}

p {
    color:black;
    background-color: transparent;
}




