@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zilla+Slab&display=swap');

.content {
    display: flex;
    justify-content: center;
}



.detail-article {
    width: 96%;
    margin-top: 40px;
    margin-left: 10px;
    margin-right: 10px;
    padding: 20px;
    background-color: var(--header);
    border-radius: 12px;
    box-shadow: 0px 2px 15px 0px #00000017;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.25s;
}

@media screen and (min-width: 1350px )
{
    .detail-article {
        width: 1320px;
    }
}

.detail-article h1 {
    text-align: center;
    font-family: 'Varela Round', sans-serif;
}

.detail-article p {
    font-family: serif;
    font-size: 18px;
    text-align: justify;
}

.hr-article {
    height: 2px;
    background-color: var(--ecriture);
}

.detail-article hr {
    height:0px;
    border-radius: 2px;
    color: teal;
    border: 2px solid currentColor;
    width: 0;
    animation: separator-width 1s ease-out forwards;

}

@keyframes separator-width {
    0% {
      width: 0;
    }
    100% {
      width: 80%;
    }
}