@font-face {
    font-family: Alegreya;
    src: url("Alegreya.ttf");
}

body {
    font-family: Alegreya;
    background-color: #f3f3f5;
}

.home {
    max-width: 800px;
    display: block;
    margin-inline: auto;
}

.navbar {
    max-width: 1000px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 22px;
    padding-bottom: 22px;
}

.navbar > .name {
    font-weight: bolder;
    font-size: 28px;
}

.navbuttons {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.navbutton {
    text-decoration: none;
    font-weight: bold;
    color: black;
    font-size: 22px;
}

.tags-title {
    text-align: center;
}

.tags-content {
    max-width: 800px;
    display: block;
    margin-inline: auto;
    height: fit-content;
    line-height: 45px;
}

.tag-button {
    padding-block: 10px;
    padding-inline: 20px;
    border-radius: 3px;
    background-color: rgb(0, 26, 73);
    margin-inline: 3px;
    margin-block: 10px;
    color: white;
    font-weight: bold;
    font-family: sans-serif;
    text-decoration: none;
}

.article-block {
    border: 1px solid black;
    border-radius: 8px;
    padding: 12px;
    margin-block: 7px;
}

.article-block > a {
    text-decoration: none;
    color: #111;
}

.article-block-content > * {
    margin: 0;
}