@charset "UTF-8";

html {
  overflow-y: scroll; /* prevents pixel shifting on load */
}

body {
  font-family: Georgia, serif;
}

body,
footer {
  background-color: #333;
}

.navbar {
  background-color: #fff;
}

.navbar-brand {
  display: inline-block;
  font-size: 2.125rem;
  font-family: 'Josefin Slab', serif;
  color: #333;
  text-shadow: 0 1px 0 #777;
  transition: all 0.8s ease-in-out;
}

.navbar-brand:hover {
  color: #db4437;
  text-shadow: 0 1px 0 #a62317;
}

h1 {
  font-family: Lobster, sans-serif;
}

.initialism {
  text-decoration: none;
}

.jumbotron {
  margin-bottom: 0;
  padding: 90px 0 50px 0;
}

.jumbotron code {
  color: #000;
  background-color: #fff;
}

.jumbotron img {
  border: 5px solid #fff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  margin: 0 auto;
}

.jumbotron > .btn-lg,
.jumbotron > .btn,
.hire-btn,
.hire-btn:hover {
  color: #fff;
  border-radius: 0;
  padding: 16px 40px;
}

footer {
  color: #fff;
  padding: 20px 20px 10px;
}

footer p {
  font-size: 1.75rem;
}

footer .fa {
  display: inline-block;
  font-size: 2.2rem;
  color: #fff;
  padding: 1rem;
}

.linkedin {
  background-color: #007bb5;
}

.github {
  background-color: #6cc644;
}

.github-link {
  color: #6cc644;
}

.github-link:hover {
  color: #6cc644;
}

.hire-btn,
.email {
  background-color: #a82024;
}

footer .fa.resume {
  background-color: #fff;
  color: #000;
}
.copyright {
  font-size: 1.2rem;
  margin-top: 30px;
}

p.copyright {
  padding: 0;
  margin-bottom: 0;
}

/* ==========================================================================
   Animation Styles - https://github.com/daneden/animate.css
   ========================================================================== */

.animated-fi-brand {
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s;
}

.animated-bid,
.animated-biu {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.animated-bid {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
}

.animated-biu {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
}

.animated-fi {
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}

.animated-fi-brand,
.animated-bid,
.animated-biu,
.animated-fi {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* bounceInDown */
@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0, 5px, 0);
  }

  to {
    transform: none;
  }
}

.bounceInDown {
  animation-name: bounceInDown;
}

/* bounceInUp */
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  animation-name: bounceInUp;
}

/* fadeIn */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

/* ==========================================================================
   Hover Styles - https://github.com/IanLunn/Hover
   ========================================================================== */

/* Underline From Center */
.hvr-underline-from-center {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}

.hvr-underline-from-center:before {
  content: '';
  position: absolute;
  z-index: -1;
  left: 50%;
  right: 50%;
  bottom: 0;
  background: #a62317;
  height: 4px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.hvr-underline-from-center:hover:before,
.hvr-underline-from-center:focus:before,
.hvr-underline-from-center:active:before {
  left: 0;
  right: 0;
}
