body {
    font-family: serif;
    background: linear-gradient(41deg, rgba(181, 181, 181, 1) 0%, rgba(255, 255, 255, 1) 93%)no-repeat center fixed;
    /*Fond d'écran du site en gradient de 41°, sans répétition centré et fixé*/
    background-size: cover;
    /*Permet de prendre toute la place da la page*/
}

h1 {
    /*Modifications de la balsie h1*/
    text-align: center;
    border-color: #f7931a;
    /*Couleur du bitcoin, couleur mâitresse de la page*/
    border-style: groove outset ridge inset;
    /*Permet de faire un effet autour du titre*/
    border-width: 0.5em;
    margin: 0.2em;
    border-width: 15px 25px 15px 25px;
    font-size: 2.2em;
}

h2 {
    /*Modifications des balises h2*/
    margin-left: 25%;
    font-size: 1.9em;
    margin-top: 80px;
}

p {
    /*Modifications du texte*/
    display: block;
    font-size: 1.4em;
    line-height: 1.7;
    width: 1200px;
    text-align: left;
    margin: 30px 0 -15px 19%;
}

strong {
    /*Modifications de la balise*/
    font-weight: bolder;
    color: #dd861d;
}

em {
    /*Modifications de la balise em*/
    font-style: italic;
    font-weight: bold;
    color: #e96b15;
}

i {
    /*modifications de la balise i*/
    font-style: italic;
    font-size: 0.9em;
}

#logo {
    /*Modifications de l'image du bitcoin*/
    float: right;
    width: 10%;
    height: 10%;
}

#menu {
    /*modifications du menu*/
    display: block;
    left: 0px;
    position: absolute;
    margin-top: 95px;
    background-color: #f7931a;
    padding: 10px 5px 0px 10px;
    font-size: 1.5em;
    border-radius: 0px 35px 35px 0px;
    height: auto;
    width: 200px;
}

#menu a {
    /*modifications de la balise a dans le menu*/
    display: block;
    margin: 17px 10px 17px -5px;
    background: radial-gradient(circle, rgba(209, 209, 209, 1) 0%, rgba(247, 147, 26, 1) 100%);
    color: black;
    padding: 8px 5px 8px 5px;
    border-radius: 5px 14px 14px 5px;
    text-decoration: none;
    text-align: center;
}

#menu a:hover {
    /*modifications du menu quand on passe la souris dessus*/
    transition: color 0.8s, background 1s;
    color: ghostwhite;
    background: radial-gradient(circle, rgba(247, 147, 26, 1) 0%, rgba(209, 209, 209, 1) 100%);
}

.intro {
    float: none;
    margin-top: 100px;
    margin-bottom: -50px;
    font-size: 1.8em;
}

.annexe {
    font-size: 1.8em;
    margin: 0 40px 40px 30px;
}

@media screen and (max-width: 1500px) {
    /*Modifications quand l'écran est au-dessus de 1500px*/
    #menu {
        width: 100%;
        position: relative;
    }
    h1 {
        font-size: 80px;
        border-radius: 35px 35px 35px 35px;
    }
    h2 {
        font-size: 60px;
    }
    p {
        font-size: 30px;
        float: left;
        margin-left: 0px;
        width: 100%;
    }
    label {
        font-size: 25px;
    }
}