.coverTitle {

    margin-top: -300px;

}

.underline {
        text-decoration: underline;

}

a:link {
    text-decoration: none;
  }

#navBar {
    position: sticky;
}

.quote {

    margin-top: -4rem;
}



/*Scrolling Animation*/
.reveal{

    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition
    : 0.5s all ease;
  }

  .reveal.active{
    transform: translateY(0);
    opacity: 1;
  }
  

  