html body {
    font-family: 'Roboto Mono', sans-serif;
    background-color: white;
}

:root {
  --accent: forestgreen;
  --border-width:  5px ;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    padding-top: 55px;
    /*display: flex;*/
    /*text-align: center;*/
    /*flex-direction: column;*/
    background: blue;
    margin-bottom: 100px; /* Margin bottom by footer height */
    font-size: 12pt;
}

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

body > .container {
  padding: 60px 15px 0;
}

img {
    max-width: 100%;
}

/* Homepage */

.intro {
    transform: translateY(13vh);
}

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

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

/* Page content */

.content {
    padding-top: 20px;
      margin-bottom: 100px; /* Margin bottom by footer height */
}

/* 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;
}

/* Paginator */

.pages {
    padding: 15px 0;
}

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

/* 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);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px; /* Set the fixed height of the footer here */
    background-color: #f5f5f5;
}

h1.title {
  font-size: 38px;
  text-align: center;
  font-weight: bold;
}
h4.author { /* Header 4 - and the author and data headers use this too  */
  font-size: 18px;
  text-align: center;
  font-weight: bold;
}
h4.date { /* Header 4 - and the author and data headers use this too  */
  font-size: 18px;
  text-align: center;
}

.modal {
  text-align: center;
  padding: 0!important;
}

.modal:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -4px;
}

.modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .fullscreen-modal .modal-dialog {
    width: 750px;
    display: inline-block;
  text-align: left;
  vertical-align: middle;
  }
}
@media (min-width: 992px) {
  .fullscreen-modal .modal-dialog {
    width: 970px;
    display: inline-block;
  text-align: left;
  vertical-align: middle;
  }
}

@media (min-width: 1200px) {
  .fullscreen-modal .modal-dialog {
    width: 1170px;
    display: inline-block;
    text-align: left;
    vertical-align: middle;
  }

}