:root {
    --text: #fff;
    --background: #1b1a1a;
    --navbar-background: #545454;
    color-scheme: dark;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui,
        helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial,
        sans-serif;
    color: var(--text);
    background-color: var(--background);
    margin: 0;
}

a,
a:visited,
a:hover,
a:active,
a:focus {
    color: #ffffff;
    text-decoration: underline;
}

a.articleLink {
    padding-left: 20px;
}

li {
    padding-bottom: 5px;
}

main {
    margin: 0 1vw;
}

.navbar {
    display: flex;
    align-items: center;
    padding: 8px;
    margin-bottom: 8px;
    background-color: var(--navbar-background);
    height: 50px;
    justify-content: space-between;
}

.flag, .pdf{
    display: inline-block;
    vertical-align: middle;
}

footer {
    display: flex;
    align-items: center;
    padding: 8px;
    margin-bottom: 8px;
    height: 20px;
}

@media screen and (max-width: 900px) {
    main {
        margin: 8px;
    }
}