html, body {
    position:fixed;
    top:0;
    left:0;
    bottom:0;
    right:0;
    background: #1f1f1f;
    color: #333333;
}

.main {
    display: flex;
    justify-content: space-between;
    padding: 0 5%; padding-top: 10px;
}

svg {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.content {
    margin-top: 50px;
    margin-bottom: 100px;
}

h1 {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Libre Baskerville', serif;
    text-align: center;
}

h1, h2, h3, h4, h5, h6 {
    color: #e8e8e8;
}

.bg-steel {
    background-color: #5f788a;
}

.site-header .navbar-nav .nav-link {
    color: #cbd5db;
}

.site-header .navbar-nav .nav-link:hover {
    color: #ffffff;
}

.site-header .navbar-nav .nav-link.active {
    font-weight: 500;
}

.content-section {
    background: #ffffff;
    padding: 10px 20px;
    border: 1px solid #dddddd;
    border-radius: 3px;
    margin-bottom: 20px;
}

.article-title {
    color: #444444;
}

a.article-title:hover {
    color: #428bca;
    text-decoration: none;
}

.article-content {
    white-space: pre-line;
}

.article-img {
    height: 65px;
    width: 65px;
    margin-right: 16px;
}

.article-metadata {
    padding-bottom: 1px;
    margin-bottom: 4px;
    border-bottom: 1px solid #e3e3e3
}

.article-metadata a:hover {
    color: #333;
    text-decoration: none;
}

.article-svg {
    width: 25px;
    height: 25px;
    vertical-align: middle;
}

.account-img {
    height: 125px;
    width: 125px;
    margin-right: 20px;
    margin-bottom: 16px;
}

.account-heading {
    font-size: 2.5rem;
}

rect {
    fill: none;
    pointer-events: all;
}

.node {
    fill: #e8e8e8;
}

.cursor {
    fill: none;
    stroke: #454545;
    pointer-events: none;
}

.link {
    stroke: #e8e8e8;
}

.copyright {
    color: #e8e8e8;
    font-size: 1.25em;
    text-align: center;
}

::-moz-selection {
    background-color: transparent;
    color: #e8e8e8;
}

::selection {
    background-color: transparent;
    color: #e8e8e8;
}

.burger {
  float: right;
  visibility: visible;
  outline: none;
  height: 20px;
  width: 15px;
  border: 0px;
  padding: 40px;
  background: transparent;
  cursor: pointer;
}

.burger:before, .burger:after {
  content: '';
  width: 20px;
  height: 1px;
  background: #e8e8e8;
  position: absolute;
  transition: all 400ms ease-out;
  will-change: transform;
}

.burger:before {
  transform: translateY(-5px);
}

.burger:after {
  transform: translateY(5px);
}

.active.burger:before {
  transform: translateY(0) rotate(45deg);
}

.active.burger:after {
  transform: translateY(0) rotate(-45deg);
}

#nav-wrap {
    visibility: hidden;
    position:fixed;
    top:0;
    left:0;
    bottom:0;
    right:0;
    z-index: 10;
    transition: all 400ms ease-out;
}

#nav-wrap.menu-active {
    visibility: visible;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    transition: all 400ms ease-out;
    background-color: rgba(255, 255, 255, 0.05);
}

#msg{
  width: 90%;
  color: #e8e8e8;
  font-size: 0.9rem;
  margin-top: 50px;
  font-weight: 400;
  font-family: 'Libre Baskerville', serif;
  position: relative;
  opacity: 0;
  transition: opacity 400ms ease-out;
  will-change: transform;
  float: right;
  text-align: right;
  padding-right: 10px;
}

#msg.active {
  transition: opacity 400ms ease-out;
  opacity: 1.0;
}

