    html {
      scroll-behavior: smooth;
    }
    body {
  font-family: 'Roboto', sans-serif;
  color: black;
  
}

    /* Expanded Navbar */
.navbar {
      padding: 1rem 2rem;
      width: 100%;
}


.navbar-brand {
 /* font-family: 'Montserrat', sans-serif;*/
  font-weight: 700;
}

.nav-item{
    font-weight: 700;
    font-style: bold;
    color: black;
}

.nav-link{
    color: black;
}

span{
    color: black;
}

 /* Background Section */
    .bg-image-section {
      position: relative;
      height: 700px;
      overflow: hidden;
    }

     .bg-image-section .bg-image {
      background-image: url('assets/bg_image.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }

    .bg-image-section .overlay {
      background-color: rgba(0, 0, 0, 0.7);
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

     .bg-image-section .content {
      position: relative;
      z-index: 2;
      color: white;
      text-align: center;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    h1{
        font-size: 80px;
    }
    .lead{
        font-size: 25px;
    }

    .contact-message{
        text-align: center;
    }

    .card-text{
        text-align: justify;
    }

    .footer-paragraph{
        text-align: center;
    }