/* custom.css */
body {
    font-family: 'Roboto', sans-serif;
}

.has-bg-img { background: url('/static/img/intro.png')center center; background-size:cover; }

.fade-in {
  animation: fadeIn 1.5s ease-out;
}

.fade-out {
    animation: fadeOut 1s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}
