/* Polices */
@font-face {
    font-family: ballpark;
    src: url("Polices/ballpark.ttf");
}
@font-face {
    font-family: dayrom;
    src: url("Polices/dayrom.ttf");
}
/* reset */
*{
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: dayrom;
}
body{
    background: url("images/fond_jaune.png");
    margin: 0;
}
.separateur{
    background: url("images/separateur.png");
    height: 3px;
    width: 950px;
    margin: 0 auto;
}
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    width: 950px;
    margin: 0 auto;
}
header nav a{
    color: black;
    text-decoration: none;
    padding: 5px;
    font-size: 20px;
}
header nav a:nth-child(1){
    color: crimson;
    border-bottom: 2px solid crimson;
}
header nav a:hover{
    color: crimson;
    border-bottom: 2px solid crimson;
}
.logo span{
    font-size: 2rem;
}
/* Articles */
.article{
    position: relative;
    height: 219px;
    width: 950px;
    margin: 10px auto;
}
.article>img{
    border-radius: 5px;
}
.plus{
    bottom: 0;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.438);
    padding: 10px;
    border-radius: 0 0 5px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
    width: 100%;
}
.plus>span{
    color: white;
}
.plus>button{
    background: linear-gradient(white,red);
    padding: 10px;
    color: white;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
/* description de l'article */
.da{
    display: flex;
    gap: 1rem;
    width: 950px;
    margin: 0 auto;
}
.gauche{
    flex: 2;
}
.gauche>h2{
    display: flex;
    align-items: center;
}
.gauche>p{
    text-align: justify;
}

.droite{
    flex: 1;
    background: gray;
    border-radius: 10px;
    height: min-content;
    padding: 5px;
    display: flex;
    flex-direction: column;
}
.droite .pp, .rs{
    margin: 0 auto;
}
.droite .rs{
    display: flex;
    gap: 1rem;
}
.droite>h2{
    text-align: center;
    color: white;
    font-weight: 400;
}
.droite>p{
    text-align: justify;
    color: white;
}
/* Footer */
footer{
    display: flex;
    width: 950px;
    margin: 0 auto;
}
footer>div{
    flex: 1;
}
footer>div:nth-child(2){
    position: relative;
}
footer .top{
    position: absolute;
    top: -3px;
    left: 120px;
}
.liste{
    display: flex;
    gap: 2rem;
    color: crimson;
}
.liste>ul{
    list-style: none;
    margin: 0;
    padding: 0;
}