main {
    font-weight: normal;
    font-style: normal;
    line-height: 1.2;
    width: clamp(0px, 90%, 900px)
}

h1 {}

article.blogpost {
    letter-spacing: -2%;
    font-size: 1.4rem;


    h1 {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 1rem;

    }

    p {}

    img {
        max-width: 100%;
        height: auto;
    }

    hr {


        margin: 2rem auto;
        /*  border: none;
        width: 80%;
        border-top: 1px dashed black; */
    }
}


.comments {
    display: flex;
    /* les enfants sont alignés en ligne */
    gap: 1rem;
    /* petit espace entre eux */
    overflow-x: auto;
    /* on autorise le scroll horizontal */
    overflow-y: hidden;
    /* pas de scroll vertical */
    white-space: nowrap;
    /* évite que ça passe à la ligne */
    padding: 1rem;
    scroll-behavior: smooth;
    /* bonus: défilement fluide */
}

.comment {
    font-size: 50%;
    flex: 0 0 auto;
    background: #eee;
    border-radius: 8px;
    padding: 1rem;
}