:root {
    --text: #eceff4;
    --alt-text: #D8DEE9;
    --background: #2e3440;
    --alt-background: #4C566A;
    --aurora-red: #BF616A;
    --aurora-purple: #b48ead;
    --aurora-green: #A3BE8C;
    --frost-two: #88C0D0;
}

html {
    margin: 0 auto;
}

body {
    margin-right: 15%;
    margin-left: 15%;
    background-color: var(--background);
    color: var(--text);
    font-family: monospace;
}

a {
    text-decoration: none;
    color: var(--aurora-purple);
    font-weight: bold;
}

a:hover {
    color: var(--background);
    background: var(--aurora-purple);
}

footer {
    margin-top: 50px;
    color: var(--alt-text)
}

blockquote {
    font-style: italic;
    border-left: 5px solid var(--aurora-red);
    padding-left: 15px;
}

hr {
    border: 1px solid var(--alt-background);
}

table th, td {
    border: 1px solid var(--alt-text);
    font-weight: bold;
    text-align: center;
    padding: 0 15px 0 15px;
}

table th {
    color: var(--aurora-green)
}

.header {
    font-size: 2em;
}

.header ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.header li {
    float: left;
}

.header li a {
    display: block;
    padding: 8px;
    font-size: 0.75em;
}

.siteurl {
    color: var(--text);
}

.main-content {
    font-size: 1.35em;
    line-height: 1.5;
}

.sub-text {
    font-size: 0.75em;
    color: var(--alt-text);
}

.announcement {
    background-color: var(--aurora-red);
    color: var(--background);
    text-align: center;
    margin-bottom: 15px;
}

.basic-flex {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
}

.basic-flex img {
    padding: 3px;
}

.center-item {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.green-text {
    color: var(--aurora-green);
}

.blue-text {
    color: var(--frost-two);
}

.responsive-img {
    max-width: 100%;
    height: auto;
}

.large-img {
    max-width: 75%;
    height: auto;
}

.medium-img {
    max-width: 50%;
    height: auto;
}

.small-img {
    max-width: 20%;
    height: auto;
}

@media screen and (max-width: 820px) {
    body {
        margin-right: 5px;
        margin-left: 5px;
    }

    .header {
        font-size: 1.2em;
    }

    .header nav {
        font-size: 1.5em;
    }

    .maint-content {
        font-size: 0.75em;
    }
}