body {
    background-image: url(fond_2.png);
}

#btnScrollToTop {
    display: none;
    position: fixed;
    /* CHANGEMENT: J'ai déplacé un peu le bouton */
    bottom: 10px;
    right: 10px;
    /* CHANGEMENT: J'ai changé le padding */
    padding: 0.25em;
    color: #FFF;
    /* CHANGEMENT: J'ai changé la couleur du fond en blanc */
    background-color: white;
    /* CHANGEMENT: J'ai arrondi les bordures du bouton */
    border-radius: 100%;
    border: none;
    cursor: pointer;
  }

  /* CHANGEMENT: On définit une taille pour l'image à l'intérieur du bouton */
#btnScrollToTop img {
    width: 50px;
    height: 50px;
  }

#btnScrollToTop:hover {
  background-color: #199BD2;
}

.circle-menu {
    position: relative;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;  /* Centre horizontalement */
    align-items: center;      /* Centre verticalement */
    padding: 0 20px;
}

.circle {
    width: 80px;
    height: 80px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

/* Hover effect */
.circle:hover {
    background-color: #555;
    transform: scale(1.1);
}

/* Responsive : Pour les écrans < 600px */
@media (max-width: 600px) {
    .circle-menu {
        height: 80px;
        padding: 0 10px;
    }

    .circle {
        width: 60px;
        height: 60px;
    }
}


.menu-item {
    color: white;
    text-decoration: none;
    font-size: 14px;
    text-align: center;
}

.index {
    width: 10%;
    float: left;
    position: absolute;
    background-color: grey;
    top: 0%;
    border-radius: 30px;
    border: solid white 3px;
    padding-top: 1em;
    padding-bottom: 1em;
    padding-left: 1em;
    padding-right: 2em;
}



.auteur {
    text-align: center;
    font-size: 25px;
    font-weight: bold;
}

.titre {
    text-align: center;
    border: solid white 1px;
    padding-top: 1em;
    padding-bottom: 1em;
    font-size: 30px;
}





.texte_complet {
    font-family: TimesNewRoman;
    color: white;
    padding: 4em;
    text-align: left;
    position: relative;
    border: solid white 3px;
    background-color: black;
    margin-left: 15%;
    margin-right: 5%;
    line-height: 200%;
}

.titre_oeuvre {
    font-style: italic;
    background-color: #E0CDA9;
    border: 2px;
    border: outset;
    padding: 2em;
    font-family: TimesNewRoman;
    text-align: center;
    color: black;
    font-size: 2em;
}

.titre_secondaire {
    text-align: center;
    text-decoration: underline;
    font-family: TimesNewRoman;
    color: grey;
}

.auteur {
    text-align: center;
    font-weight: bold;
    color: white;

}

.contexte::before {
    content: "❧";
    margin-left: 25px;
    color: white;
}

img {
    display: block;
    float: right;
    height: 40em;
}


/*FOOTER*/

#index-footer{
  margin-left: 17%;
  margin-top: 3%;
  width: 82%;
  background-color: #344D59;
  color : #ECF8F6;
  border: 1px solid #B8CBD0;
  padding : 3pt;
  font-family : arial;
}

footer{
  margin-top: 3%;
  width: 100%;
  background-color: #344D59;
  color : #ECF8F6;
  border: 1px solid #B8CBD0;
  padding : 3pt;
  
  font-family : arial;
}