/**
http://techno.pvm.free.fr/index.php/3eme/12-exercices-web-html-css?showall=&start=6
https://www.w3schools.com/css/css_background.asp
https://www.w3schools.com/css/css_text.asp
*/

h1 {
    font-size: 100px;
    color: pink;
    text-align: center;
    font-family: Arial, sans-serif;
}

h2 {
    color: #75aaff;
    font-size: 40px;
    font-weight: bolder;
}

p.textNormal {
    text-align: left;
    color: #ffaa82;
    font-size: 20px;
}

p#lien{
    text-align: left;
    color: rgba(178, 228, 233, 0.99);
    font-size: 15px;
    text-decoration: overline;}



