html,
body {
    height: 100%;
}

body {
    padding-top: 55px;
    display: flex;
    text-align: left;
    flex-direction: column;
}

main {
    margin: auto;
    padding: 25px;
    flex: 1 0 auto;
    max-width: 750px;
}

img {
    max-width: 100%;
}

/* Homepage */

.intro {}

.intro>h1 {
    color: #212121;
    font-size: 6vh;
}

.intro>h2 {
    color: #757575;
    font-size: 3vmin;
}

/* Page content */

.content {
    padding-top: 20px;
}

.content p,
li {
    font-size: 16px !important;
}

/* Profile picture */

.profile {
    width: 10vh;
    height: 10vh;
    border-radius: 50%;
}

/* Colored links */

a:link,
a:visited {
    color: var(--accent);
}

a.icon:hover {
    text-decoration: none;
}

a:hover {
    color: var(--accent) !important;
}

/* Copyright message */

.copyright {
    margin: 15px 0;
}

.post-list {
    padding-top: 20px;
}

.post-list h2 {
    padding-bottom: 20px;
}

.post-list h3 {
    padding-bottom: 20px;
    line-height: 5px;
}

.post-meta {
    font-size: 2.5vmin;
    color: #777;
    padding: 0 0 0 0 px;
}

/* Paginator */

.pages {
    padding: 15px 0;
    text-align: center !important;
}

.pages-icon {
    font-size: 2.5vmin;
    padding: 0 15px;
}

.pages-text {
    font-size: 2.5vmin;
    font-family: "Raleway", sans-serif;
    font-size: 18px;
    font-weight: 500;
}

/* List item for posts/projects */

.item {
    padding: 10px 0;
}

.item-tag {
    background-color: var(--accent);
}

/* Navigation icons */

.navbar-icon {
    font-size: 125%;
    display: inline-block !important;
}

/* Colored borders at top/bottom of page */

.navbar.navbar-default {
    border-top: var(--border-width) solid var(--accent);
}

footer {
    border-bottom: var(--border-width) solid var(--accent);
    text-align: center;
}

footer * {
    margin: 0 auto;
}

/* Table Display */

.table-wrapper {
    overflow-x: auto;
}

table {
    max-width: 100%;
    border-spacing: 0;
    padding: 1em !important;
    margin: 2em !important;
}

thead {
    background: lightgrey;
    padding: 0.5em 1em;
}

th,
td {
    padding: 0.5em 1em !important;
    border: 1px double lightgrey;
}