body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin: 0;
}

a,
a:active {
    outline: none;
}

a:link {
    color: #000;
    text-decoration: underline;
}

a:active {
    color: #000;
    text-decoration: underline;
}

a:visited {
    color: #000;
    text-decoration: underline;
}

a:hover {
    color: #000;
    text-decoration: underline;
}

.controls {
    margin-top: 8px;
    font-size: 0.9em;
}

.head,
.foot {
    display: flex;
    justify-content: center;
    align-items: center;
}

img.displayed {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.site-header {
    /* border-bottom: 1px solid #ccc; */
    padding: 0.5em 0.5em;
    display: flex;
    justify-content: space-between;
}

.site-identity h1 {
    font-size: 1.5em;
    margin: 0.6em 0;
    display: inline-block;
}

.site-navigation ul,
.site-navigation li {
    margin: 0;
    padding: 0;
}

.site-navigation li {
    display: inline-block;
    margin: 1.4em 1em 1em 1em;
}

.logo {
    margin: 4px;
    border: 0px;
}

.footer-container footer {
    font-size: 2em;
    font-weight: 400;
    color: #000;
    /* padding: 20px 0; */
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 75px;
}

.wrapper {
    width: 90%;
    /* margin: 0 5%; */
}

.mute {
    text-decoration: none !important;
    color: #000 !important;
}

.box {
    width: 574px;
    min-height: 192px;
    border: 0px;
    background-color: #efefef;
}

.topmost {
    background-color: #000;
    color: #fff;
}

.angry-grid {
    display: grid;

    grid-template-rows: 1fr;
    grid-template-columns: 1fr;

    gap: 0px;
    height: 100%;
}

@media (min-width: 768px) {
    .nav {
        max-height: none;
        top: 0;
        position: relative;
        float: right;
        width: fit-content;
        background-color: transparent;
    }

    .angry-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.bookmarks {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(282px, 282px));
    grid-auto-rows: 282px;
    grid-auto-flow: dense;
    justify-content: center;
    padding: 10px 10px 10px;
    background-color: #fff;
    vertical-align: top;
}

.bookmark {
    background: #fff;
    border: 1px solid grey;
    text-align: center;
    border-radius: 4px;
    box-shadow: 3px 3px 3px grey;
    padding: 3px;
    overflow: hidden;
}

.next {
    text-decoration: underline !important;
}