@font-face {
  font-family: RalewayExtreme;
  src: url("raleway/Raleway-Bold.ttf");
  font-weight: bold;
}

@font-face {
  font-family: RalewayExtreme;
  src: url("raleway/Raleway-ExtraLight.ttf");
  font-weight: normal;
}

@font-face {
  font-family: Raleway;
  src: url("raleway/Raleway-Medium.ttf");
  font-weight: bold;
}

@font-face {
  font-family: Raleway;
  src: url("raleway/Raleway-Light.ttf");
  font-weight: normal;
}

body {
  background: #ffffff;
  color: #000000;
  margin-top: 5rem;
  font-family: "Raleway", "Lucida Grande", Verdana, Arial, sans-serif;
  line-height: 2;
}

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

h2 {
  font-size: 30px;
}

.site-header .navbar-nav .nav-link {
  color: #444444;
  font-size: 20px !important;
}

.site-header .navbar-nav .nav-link:hover {
  color: #000000;
  font-family: "RalewayExtreme", "Lucida Grande", Verdana, Arial, sans-serif;
}

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

.web-title {
  color: #000000;
  font-size: 30px;
}

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

.small-container {
  padding-left: 4%;
  padding-right: 4%;
  margin-left: 0;
  margin-right: 0;
}

.main-img {
  width: 100%;
  box-sizing: border-box;
  z-index: 0;
}

.main-img:hover {
  cursor: pointer;
}

.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;
}

.creature-highlight {
  background-color: #444444 !important;
}

.hidden {
  display: none;
}

.h-divider {
  margin-top: 5px;
  margin-bottom: 5px;
  height: 1px;
  width: 100%;
  border-top: 1px solid gray;
}

.b-bottom {
  border-bottom: solid #717171 1px;
  font-weight: bold;
}

.hover-box {
  position: absolute;
  transition: background-color 0.2s linear;
  z-index: 100;
}

.hoverbox-highlight {
  animation: initial-hoverbox 2s;
}

@keyframes initial-hoverbox {
  0% {background-color: rgba(255, 255, 255, 0)}
  50% {background-color: rgba(255, 255, 255, 0.6)
  }
  0% {background-color: rgba(255, 255, 255, 0)}
}

.hover-box:hover {
  background-color: rgba(255, 255, 255, 0.44);
  cursor: pointer;
}