
/* Main CSS file */

/* -- GLOBAL STYLING -- */

body {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: rgb(63, 63, 63)
}

/* headings */

h1 {
    font-variant: small-caps;
    margin: 0;
}

h3 {
    font-variant: small-caps;
    color: rgb(63, 63, 63)
}

/* links */

a {
    text-decoration: none;
    color: rgb(128, 128, 128)
}

a:hover {
    text-decoration: underline;
    color: rgb(63, 63, 63)
}

a.tag {
    background: rgb(128, 128, 128);
    font-size: x-small;
    padding: 3px;
    border-radius: 5px;
    color: white;
    border: 1px;
}

a.tag:hover {
    text-decoration: none;
    background: rgb(192, 192, 192);
}

/* nav */

nav ul, nav ol {
    list-style-type: none;
    padding: 0;
}

nav.pagination ol {
    width: 100%;
    display: flex;
    gap: 10px;
    justify-content: center
}

[aria-current] {
    font-weight: bold;
}

/* -- BASE LAYOUT STYLES -- */

#main_container {
    display: grid;
    grid-template-columns: 1fr 5fr 1fr;
    gap: 30px
}

#title {
    grid-column-start: 2;
}

#navbar {
    grid-column-start: 1;
    font-variant: small-caps;
    text-align: right;
}

#content {
    grid-column-start: 2;
}

#copyright {
    grid-column-start: 2;
    font-size: xx-small;
    font-style: italic;
}
