#titre-liste-histoire-publiées {
    position: relative;
    background-color: #FFEB3B;
    padding-top: 30px;
    padding-bottom: 30px;
    width: 80%;
    display: flex;
    justify-self: center;
    justify-content: center;
    align-items: center;

    font-weight: 900;
    font-size: 2.5rem;
    text-transform: uppercase;
    color: #3498DB;
    text-shadow: 3px 3px 0px rgba(52, 152, 219, 0.4);
    font-family: 'Raleway ExtraBold';
    text-align: center;

    border: solid 3px black;
}

#titre-liste-histoire-publiées::after,
#titre-liste-histoire-publiées::before{
    transition: 0.3s;
    position: absolute;
    content: '';
    border: solid 3px black;
    width: 20px;
    height: 50px;
    background-color: #FFEB3B;
}
#titre-liste-histoire-publiées::after{
    right:-22.5px;
    border-left: 0px;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
}
#titre-liste-histoire-publiées::before {
    left: -22.5px;
    border-right: 0px;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
}

#titre-liste-histoire-publiées:hover::after {
    transition: 0.3s;
    width: 30px;
    right: -32.5px;
}
#titre-liste-histoire-publiées:hover::before {
    transition: 0.3s;
    width: 30px;
    left: -32.5px;
}
/*----------*/


#liste-histoire-publiées{
    display: flex;
    justify-self: center;
    justify-content: center;
    border: solid 2px black;
    box-shadow: 0px 0px 5px black;
    width: 70%;
    margin-top: -37px;
    background-color: aliceblue;
    padding: 0px 15px 0px 15px;
}

#ul-liste-histoire-publiées{
    font-size: 20px;
    font-family: 'Raleway LightItalic';
    text-align: center;
    list-style-type:none;
    margin: 0px;
    padding: 0px;
}

#ul-liste-histoire-publiées li:hover {
    font-size: 22px;
    text-decoration:underline;
    text-decoration-color: #3498DB;
}


#ul-liste-histoire-publiées li {
    margin: 25px 0px 25px 0px;
}

#ul-liste-histoire-publiées a {
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: black;
    text-decoration: none;
}