h1, h2, h3, h4{
    margin-top: 0.5rem;
    margin-bottom: 0;
    text-align: start;
}
h4{
    margin-left: 0.5rem;
}

strong {
    font-weight: bold;
    padding-left: 1rem;
}

table{ 
    border-collapse: collapse;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-text-2);
    margin-top: 1rem;
    margin-bottom: 1rem;
}
th, td {
    padding: 10px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--color-text-muted);
}
tr:nth-child(even) {
    /*background-color: var(--color-surface);*/
}
tr:hover {
    background-color: var(--color-surface);
    color: var(--color-text);
}
th {
    position: sticky;
    top: 0; /* Don't forget this, required for the stickiness */
    background-color: var(--color-surface-2);
    color: var(--color-text);
}


.articleText{
    text-align: justify;
    text-wrap: auto;
    margin-left: 1rem;

    line-height: 150%;
    letter-spacing: 0.5%;
}

.column5{
    max-width: 30%;
    text-decoration: none;
}


.likeCard{
    margin-top: 0;
}
.likeCard.whatIdo img{
    /*max-width: 144px;
    max-height: 108px;*/
}


@media (max-width: 600px) {
    .column5{
        max-width: 50%;
    }

    .articleText {
        text-align: left;
    }
    
}


#myArticles {
    display: none;
}

#myArticles.is-visible {
    display: flex;
}

.myArticle{
    display: none;
}

.myArticle.is-visible{
    display: block;
}
.articleImage{
    max-width: 100%;
}

#myArticles a img{
    min-width: 144px;
}