html, body {
    height: 100%;
}

body {
    padding-top: 55px;
    display: flex;
    text-align: center;
    flex-direction: column;
    flex: 1 0 auto;
}

.main {
    position: relative;
    margin: auto;
    padding: 25px;
    display: table;
    /*flex: 1 0 auto;*/
}

.page-title {
    margin: 10px 0 10px 0;
    font-size: 5rem;
    letter-spacing: -1px;
    font-weight: 700;
    font-family: "Open Sans", sans-serif;
    color: #222;
}

.page-description {
    margin: 0;
    font-size: 2.3rem;
    line-height: 1.5em;
    font-weight: 400;
    font-family: "Source Sans Pro", serif;
    letter-spacing: 0.01rem;
    color: #222;
}

/*footer*/

.copyright {
    margin: 15px 0;
}

/*home page*/

.main-header {
    position: relative;
    display: table;
    width: 100%;
    height: 100%;
    text-align: center;
    /*background: #555 no-repeat center center;*/
    /*background-size: cover;*/
    overflow: hidden;
}

.main-header .inner {
    width: 90%;
}

.middle {
    display: table;
}

.vertical {
    display: table-cell;
    vertical-align: middle;
}
/*
.intro {
    margin: 25vh 0;
}

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

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

/*apply accent colour to links*/

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

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

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

/*paginator at bottom of list view*/

.pages {
    padding: 15px 0;
}

.pages-icon {
    padding: 0 15px;
}

/*list item for posts and projects*/

.item {
    padding: 10px 0;
    margin: auto;
    width: 65%;
}

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

/*navigation bar icons*/

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

/*coloured borders at top and bottom of the page*/

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

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

img {
    max-width: 100%;
}