@font-face {
    /* On donne un nom à la police : */
    font-family: "Ma police";
    /* On indique son emplacement sur le serveur : */
    src: url("../fonts/Josefin.ttf");
}



h1 {
    font-family: "Ma police", "Times", serif;
    /* On veut mettre un cadre coloré au titre. */
    border-color: rgb(40, 200, 100);
    /* Par défaut, le cadre est invisible ; on le rend visible. */
    border-style: solid dashed;
    /* On centre le texte dans le cadre. */
    border-width: thick;
    text-align: center;
    border-radius: 15%;
    margin: 10px 10px 10px 10px;
    padding: 5px 5px 5px 5px;
    background-color: cornsilk;
}

h1:hover {
    color: darkcyan;
}

h2 {
    text-decoration: underline;
}

h3 {
    text-decoration: underline dotted;
}

blockquote {
    background-color: lightgray;
    border-radius: 5px;
}

p {
    color: black;
    background-color: transparent;
}

body main {
    background:
        radial-gradient(#AA442F 1px, transparent 1px),
        radial-gradient(#C4B8CC 2px, transparent 4px),
        linear-gradient(#fff 0px, transparent 0);
    background-size: 104px 5px, 5px 96px, 100% 6px, 92px 74px, 80px 155px;
    background-position: 54px 55px, 0px 0px, 0px 0px, 0px 0px, 0px 0px;
}

