body {
  font-family: 'Rubik', sans-serif;
}

#site-cover {
  background: #325272 url("../img/bg.jpg") no-repeat center center scroll;
  background-size: cover;
  animation: 1s ease-out 0s 1 fadeIn;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}