@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,600|Roboto+Mono:300,400');
$darkBG: #222941;
$darkAccent: #2e3756;
$darkAccentLighter: rgb(73,89,110);

* {
  box-sizing: border-box;
}

body {
  background: linear-gradient(rgba(34, 41, 65, 0.65), rgba(46, 55, 86, 0.65)), url('body-bg.jpg');
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.hero-body .container{
  display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
}

  .title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400 !important;
    font-size: 4rem !important;
    letter-spacing: 15px;
    color: #ffffff !important;
  }

/* -------------------- */
/* -- Animations CSS -- */
/* -------------------- */

@keyframes fadeIn {
  from {
    opacity: 0;
    opacity: 1\9;
  }
  to {
    opacity: 1;
  }
}

.fade {
  opacity: 0;
  animation: fadeIn ease-in 1;
  animation-fill-mode: forwards;
  animation-duration: 2s;
}

.fade.fadeOne {
  animation-delay: 1.7s;
}

.fade.fadeTwo {
  animation-delay: 2.2s;
}

.fade.fadeThree {
  animation-delay: 4.2s;
}
 .fade.fadeThree  span {
    font-size: .8rem;
 }

img.outlined {
    -webkit-filter: drop-shadow(1px 1px 0 white)
            drop-shadow(-1px 1px 0 white)
            drop-shadow(1px 1px 0 #ddd)
            drop-shadow(-1px -1px 0 white);

    filter: drop-shadow(1px 1px 0 white)
            drop-shadow(-1px 1px 0 white)
            drop-shadow(1px 0px 0 #ddd)
            drop-shadow(-1px -1px 0 white);
}