html,
body {
    display: block;
    overflow: auto;
    margin: 0;
    height: 100vh;
}

body {
    display: flex;
    background-color: #201c21;
    flex-wrap: wrap;
    font-family: "Rubik";
    color: #eeeeee;
    justify-content: center;
    align-items: center;
    touch-action: pan-y;
}

.section {
    background-color: #37303a;
    -webkit-box-shadow: 0px 5px 5px 0px #111111;
    box-shadow: 0px 5px 5px 0px #111111;
    border-radius: 8px;
    margin: 5em;
    padding: 1em;
}

.sectionTitle {
    font-size: 2em;
    margin: 0 0 0.25em 0;
}

hr {
    border: 2px solid #ba181b;
    border-radius: 2px;
}

.bookmark {
    display: block;
    text-decoration: none;
    color: inherit;
}

.bookmark:not(:last-child) {
    margin-bottom: 0.5em;
}

.bookmark:hover {
    filter: brightness(0.5);
}

#tags {
    position: fixed;
    bottom: 10px;
    left: 10px;
    padding: 0.5em;
    background-color: #201c21;
    border-radius: 8px;
}

.checkbox {
    margin-left: 5px;
}

.checkbox:not(:last-child) {
    margin-right: 20px;
}

@media screen and (max-width: 600px) {
    html,
    body {
        height: auto;
    }

    body {
        flex-direction: column;
        justify-content: unset;
    }

    .section {
        margin: 1em;
    }
}
