.background {
    background-attachment: fixed;
}


#background5 {
    background-image: url("../img/celine.jpg");
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#background5 h2 {
    font-size: xxx-large;
    background: var(--jamaique);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: fit-content;
    text-shadow: 0 0 10px #FFFFFF
}
#background5 .articles-list ul {
    max-width: fit-content;
}

#background1 {
    background-image: url("../img/jo.jpg");
    background-size: contain;
}

#background2 {
    background-image: url("../img/mielerie.jpg");
    background-size: cover;
}
#background2 .articles-list ul, #background1 .articles-list ul {
    background-color: rgba(255, 255, 255, 0.8);
}
#background2 .articles-list ul, #background9 .articles-list ul, #background1 .articles-list ul {
    padding: 5%;
    border-radius: 12px;
    backdrop-filter: blur(1px);
}
#background2 .article-container, #background9 .article-container, #background6 .article-container, #background1 .article-container {
    background-color: var(--opaque-soft);
    backdrop-filter: blur(1px);
}
#background3 {
    background: var(--jamaique);
}
#background3 .articles-list {
    flex: 2;
}
/*#background3 .articles-list:before {
    content: '';
    background-image: url("../img/michelle2.jpg");
    flex: 1;
    border: 10px solid white;
    align-self: flex-start;
    transform: rotate(-2deg);
    display: block;
    width: 25%;
}
#background3 .articles-list:after {
    content: '';
    background-image: url("../img/michelle1.jpg");
    flex: 1;
    border: 10px solid white;
    align-self: flex-end;
    transform: rotate(2deg);
    display: block;
}*/
#background3 img {
    width: 25%;
    border: 10px solid #ded5cc;
    transform: rotate(2deg);
    align-self: flex-end;
}
#background3 img:first-child {
    transform: rotate(-2deg);
    align-self: flex-start;
}
#background3 .articles-list {
    display: flex;
    justify-content: space-around;
}
#background3 .articles-list ul {
    max-width: 45%;
}
#background6 {
    background-image: url("../img/republicanwoman.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-color: #ded5cc;
}
#background6 .articles-list {
    justify-content: right;
    margin-right: 5%;
}

#background6 .paroles {
    text-align: right;
    padding-right: 5%;
}
#background6 h2 {
    position: sticky;
    top: 0;
}

#background9 {
    background-image: url("../img/rene_char.jpg");
    background-size: cover;
    background-position: top;
}
#background9 .articles-list ul {
    background: var(--jamaique-opaque);
}


@media only screen and (max-width: 768px) {

    .background {
        background-image: none !important;
    }

    .background .article-container {
        background-color: transparent !important;
    }

    #background9 .articles-list ul {
        background: var(--opaque-soft);
    }

    #background3 img {
        display: none;
    }

}