#titleBlock {
    margin: 30px 0;
}

#titleBlock #articleTitle {
    font-size: 30px;
    font-weight: 400;
}

#titleBlock #tagsBlock {
    display: flex;
    flex-direction: row;
    margin-top: 5px;
}

#titleBlock #tagsBlock .tagItem {
    font-weight: 600;
    font-size: 14px;
    background-color: black;
    color: white;
    border-radius: 30px;
    padding: 5px 10px;
    margin: 0 2px;
}

#articleBlock {
    max-width: 1000px;
}

#articleBlock #backLinkBlock {
    margin: 30px 0;
}

#articleBlock #backLinkBlock #backLink {
    font-weight: 700;
    color: black;
}

#articleBlock h1,
#articleBlock h2,
#articleBlock h3,
#articleBlock h4,
#articleBlock h5,
#articleBlock h6 {
    font-weight: 600;
}

#articleBlock p,
#articleBlock ul {
    line-height: 24px;
    font-size: 14px;
    font-weight: 400;
}

#articleBlock a {
    color: black;
    font-weight: 700;
}

#articleBlock strong {
    font-weight: 700;
}

@media screen and (max-width: 769px) {
    #articleBlock #backLinkBlock {
        margin: 10px 0;
    }
}