body {
    margin: 0;
}

::selection {
    color: white;
    background: coral;
  }

h1 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 2em;
    font-weight: normal;
    font-style: normal;
    color: black;

    margin-left: 4%;
    margin-right: 4%;
    margin-top: 4%;
}

h1 a {
    text-decoration: underline;
    color: black;
}

h1 a:hover {
    color: coral;
}

h1 small {
    font-family: 'Times New Roman', Times, serif;
    font-size: .6em;
    font-weight: normal;
    font-style: normal;
    color: gray;
}

h3 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1em;
    font-weight: normal;
    font-style: normal;
    color: black;

    margin-left: 5%;
    margin-right: 4%;
}

h3 a {
    text-decoration: underline;
    color: black;
}

h3 a:hover {
    color: coral;
}


.texte {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content:space-between;

    margin-top: 8%;
    margin-left: 4%;
}


@media (orientation: portrait) {
    .texte {
        height: auto;
    }
}

.contenu-texte {
    width: 60%;
    
}

@media (orientation: portrait) {
    .contenu-texte {
        height: auto;
        width: 100%;
        margin-bottom: 8%;
    }
}

.contenu-texte p {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.5em;
    font-weight: normal;
    font-style: normal;
    color: black;

   
    margin-right: 4%;
    margin-bottom: 1%;
}

.contenu-texte p a {
    text-decoration: underline;
    color: black;
}

.contenu-texte p a:hover {
    color: coral;
}

.contenu-texte ul li {
    list-style: circle;
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.5em;
    font-weight: normal;
    font-style: normal;
    color: black;
}

.contenu-texte li {
    margin-bottom: 2%;
}

.contenu-texte ul img {
    max-width: 60%;
    height: auto;
    margin-top: 2%;
    margin-bottom: 4%;
}

@media (orientation: portrait) {
    .contenu-texte ul img {
        max-width: 100%;
        height: auto;
    }
}

.contenu-texte ul video {
    max-width: 60%;
    height: auto;
    margin-top: 2%;
    margin-bottom: 4%;
}

@media (orientation: portrait) {
    .contenu-texte ul video {
        max-width: 100%;
        height: auto;
    }
}

.contenu-texte ul a {
    text-decoration: underline;
    color: black;
}

.contenu-texte ul a:hover {
    color: coral;
}

.contenu-texte h3 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1em;
    font-weight: normal;
    font-style: normal;
    color: black;
    line-height: 1.6em;


    margin-left: 0;
    margin-top: 2%;
    margin-bottom: 2%;
}

.contenu-img {
    width: 35%;
}

@media (orientation: portrait) {
    .contenu-img {
        width: 100%;
        margin: 0;
    }
}

.contenu-img img {
    max-width: 100%;
    height: auto;
    padding-top: 6%;
}



.articles {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    /*justify-content: space-between;*/
    justify-content: baseline;
    align-self: flex-start;
    gap: .8%;

    margin-top: 8%;
    width: 100%;
}


.elements {
    width: 32.8%;
    height: auto;

    margin-bottom: 3%;
}


@media (orientation: portrait) {
    .elements {
        width: 100%;
        height: auto;
    }
}

.elements a {
    text-decoration: none;
    color: black;
}

.elements a:hover {
    color: coral;
    text-decoration: underline;
}

.elements img {
    width: 100%;
    height: auto;
}

/* .elements img:hover {
    filter: grayscale(1) contrast(100) brightness(1);
    mix-blend-mode: multiply;
} */

.elements h2 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.5em;
    font-weight: normal;
    font-style: normal;
    color: inherit;

    margin-top: 2%;
    margin-left: 6%;
    margin-right: 6%;
    margin-bottom: 1%;
}

.elements h3 {
    font-family: 'Courier New', Courier, monospace;
    font-size: .8em;
    font-weight: normal;
    font-style: normal;
    color:gray;

    margin-top: 0;
    margin-left: 6%;
    margin-right: 6%;
}

button {
    margin-left: 4%;
    margin-top: 4%;

    font-family: 'Times New Roman', Times, serif;
    font-size: 1.5em;
    font-weight: normal;
    font-style: normal;
    color: black;    

    border: solid 2px black;
    background: none;
    padding: .7% 1.2%;
}

button:hover {
    color: white;
    background-color: coral;
    border: solid 2px coral;
    cursor: pointer;
}

hr {
    margin-top: 8%;
}

footer {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1em;
    font-weight: normal;
    font-style: normal;
    color: black;

    margin-left: 4%;
    margin-right: 4%;
    margin-top: 4%;
    margin-bottom: 4%;
}

footer a {
    text-decoration: underline;
    color: black;
}

footer a:hover {
    color: coral;
}