body, html {
    display: contents;
    width: 100%;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
    background-image: url("unsplashRoad.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.caption {
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 45%;
    width: 100%;
    text-align: center;
}

.gradient {
    color: transparent;
    background: #fc00ff;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to top, #232526, #f12711);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to top, #232526, #f12711); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: white;
}

.animate {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
 
  to {
    opacity: 0.85;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
 
  to {
    opacity: 0.85;
  }
}
 
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}