@import url('https://fonts.bunny.net/css2?family=Varela+Round&display=swap');
@import url('https://fonts.bunny.net/css2?family=Zilla+Slab&display=swap');

.content {
    display: flex;
    justify-content: center;
}

@media screen and (min-width: 750px )
{
    .detail-article {
        width: 660px;
    }
}

@media screen and (min-width: 560px) and (max-width: 749px)
{
    .detail-article {
        width: 480px;
    }
}

@media screen and (max-width: 559px)
{
    .detail-article {
        width: 350px;
    }
}

hr {
    width: 100%;
    color: var(--ecriture);
}

.detail-article {
    margin-top: 40px;
    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;
}

.detail-article h1 {
    text-align: center;
    font-family: 'Varela Round', sans-serif;
}

.detail-article p {
    font-family: serif;
    font-size: 18px;
    text-align: justify;
}

textarea {
    width: 70%;
    min-height: 90px;
    font-family: Arial, Helvetica, sans-serif;
    border: solid 2px #3498db;
    border-radius: 4px;
    padding: 6px;
    background-color: var(--fond);
    color: var(--ecriture);
}

textarea:focus {
    transition: 0.25s;
    border: solid 2px #2ecc71;
    
}

.commentaires {
    margin-top: 8px;
    margin-bottom: 8px;
}

.info_commentaire {
    font-weight: 900;
    color: #606060;
    font-size: 18px;
}

.commentaire {
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 8px;
    margin-bottom: 8px;
}


form input[type = "submit"]{
    margin-top: 14px;
    text-align: center;
    border: 2px solid #2ecc71;
    padding: 10px 40px;
    outline: none;
    color: var(--ecriture);
    border-radius: 4px;
    transition: 0.25s;
    cursor: pointer;
    background-color: var(--fond);
    margin-bottom: 20px;
}
form input[type = "submit"]:hover{
    background: #2ecc71;
    color: white;
}

.image-publication {
    width: 100%;
}

.content a {
    text-decoration: underline;
    color: #0066cc;
    font-family: Arial, sans-serif;
    font-weight: bold;
    overflow-wrap: break-word;
}

table {
	border-collapse: collapse;
	margin: 25px 0;
}

table td, table th {
    padding: 12px 15px;
}