html{
    scroll-behavior: smooth;
    font-family:Georgia, 'Times New Roman', Times, serif;
}

h1,h2,h3{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}

a{
    color:black;
}

main{
    display: flex;
}

nav{
    position: fixed;
    top: 100px;
    width:30%;
}

nav li{
    list-style-type: none;
}

nav > ul > li{
    font-weight: bold;
}

#texte{
    margin-left: 30%;
    padding-top: 100px;
    width:40%;
    max-width:400px;
    line-height: 140%;
}

#texte img{
    max-width: 100%;
}

.souligne{
    border-bottom:1px solid #000;
}

#texte sup{
    width: 12px;
    height: 12px;
    border-radius:12px;
    background-color: black;
    color: white;
    text-align: center;
    display: inline-block;
    line-height: 12px;
    font-size: 10px;
}

#texte sup:hover{
    background-color: blue;
    cursor: pointer;
}

#texte .note{
    font-size: 10px;
    margin-right:-60%; /* positionnement à partir de la marge droite, en négatif (petit hack) */
    float: right; /* cette propriété permet de sortir la note du flux */
}

#texte img{
    transform: scale(1);
    transition: transform 0.5s;
}

#texte img:hover{
    transform: scale(2);
}