.hidden {
    display: none;
}

.title {
    margin-top: -20px;
    text-align: center;
}

.title h1 {
    font-size: 3em;
}

.title p {
    padding-top: 10px;
    font-size: 1.5em;
}

.content-container {
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 50px;
}

.article-container {
    width: 50%;
}

.article-link-template {
    /*border: 5px solid grey;
    border-radius: 5px;*/
    padding: 15px 0px;
    width: 100%;
}

.article-link-template:hover {
    background-color: rgba(160, 160, 160, 0.112);
    cursor: pointer;

}

.article-link-top {
    display: flex;
    justify-content: space-between;
}

.article-tag-container {
    display: flex;
    gap: 10px;
}

.article-tag {
    border-radius: 5px;
    background-color: rgba(255, 152, 152, 0.89);
    padding: 5px 10px;
    font-family: monospace;
}

.article-sidebar {
    background-color: rgba(128, 128, 128, 0.459);
    width: 20%;
}

.article-title {
    font-size: 1.75em;
}

.article-summary {
    padding-top: 10px;
    font-size: 1.25em;
    font-family: monospace;
}

.thick-line {
    width: 100%;
    height: 3px;
    background-color: darkgrey;
}

.thin-line {
    width: 100%;
    height: 2px;
    background-color: rgb(200, 200, 200);
}

.article {
    width: 60%;
}

.article h2 {
    font-size: 2.5em;
}

.article p {
    font-family: monospace;
}