body {
    background-color: black;
    background-image: url("/assets/img/background.gif");
    color: white;
    font-family: r
    
}

main > article > section {
    width: 90%;
}

article {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 50px;
}

.header-main > a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.header-main > a > img:first-of-type {
    margin-bottom: 12px;
}

.header-title {
    display: flex;
    justify-content: center;
    color: orange;
}

.norep-spin {
    width: 100px;
}

.nav-main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    background-image: url("/assets/img/nav-min.png");
    background-size: contain;
    border: 2px solid gray;
}

.nav-main > a > img:hover {
    filter: invert(100%);
}

.nav-main > a > img {
    margin-top: 5px;
    height: 30px;
}

.nav-main > .divider {
    background-image: linear-gradient(orange, grey);
    width: 2px;
    height: 100%;
    margin-left: 10px;
    margin-right: 10px
}

.s-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

table, tr {
    border-collapse: collapse;
    border: 1px solid orange;
}

td > img {
    height: 20px;
    vertical-align: bottom;
}

a {
    text-decoration: none;
    color: coral;
}

a:hover {
    color: orangered;
}

a:visited {
    color: coral;
}

.main-grid {
    display: grid;
    grid-template-columns: auto 250px;
}

.main-grid > aside {
    margin: 12px;
    grid-column: 2;
}

@media (max-width: 830px) {
    .main-grid {
        grid-template-columns: auto;
        grid-template-rows: auto;
    }

    .main-grid > aside {
        grid-column: 1;
    }
}

.main-grid > aside > div {
    border: 2px solid orangered;
    margin-bottom: 12px;
}

.main-grid > aside > div > ul {
    padding-left: 24px;
}

.main-grid > aside > div > p {
    padding-left: 8px;
    padding-right: 8px;
}

.main-grid > aside > div > h1 {
    margin: 0px;
    padding: 4px;
    background-color: orangered;
}

.categories, .tags {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

footer {
    text-align: center;
}