body {
    font-family: 'Open Sans', sans-serif;
    color: white;
    margin: 0;
    padding: 0;
 }

 h1, h2, h3, h4, h5, h6 {
    font-family: 'Barlow Condensed', sans-serif;
    color: white;
    margin: 0;
    padding: 0;
    line-height: 100%;
 }

 p {
    line-height: 150%;
 }

 .hero {
    background-image: url(assets/DA-Hero.jpg);
    background-size: cover;
    background-position: center;
    width: 100vw;
    height: 100vh;
    display: flex;
    background-color: rgba(24, 53, 88, 80%);
    background-blend-mode: multiply;
 }

 .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    padding: 1rem;
 }

 .hero-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
 }

 .hero-title {
    font-size: 3.25rem;
    font-weight: 600;
    margin-bottom: 0;
    text-align: center;
    max-width: 36rem;
 }

 .hero-description {
    font-size: 1rem;
    margin-top: 1rem;
    width: auto;
    text-align: center;
    max-width: 28rem;
 }

 .logo{
    max-height: 60px;
    padding: 10px 0 10px 7px;
  }

  #navbar{
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 4;
  }


  @media only screen and (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
  
}