body h1 h2 h3 p {
    font-family: monospace;
}


body {
    margin: 0;
    padding: 0;
}


/* NavBar */

.navbar-2 {
    display: flex;
    align-items: center;
    justify-content: space-around;

    width: 100vw;

    height: auto;
    position: fixed;
    top: 0;
    z-index: 3;
    background-color: black;
    box-sizing: border-box;
}

.nav-logo-container {
    display: flex;
    align-items: center;
}
.nav-logo {
    max-width: 165px;
    margin-right: 20px;   
}
.nav-gaf-logo {
    max-width: 100px;
    margin: 20px;
}
.nav-links-container {
    height: 100%;
    padding: 0;
    margin: 0;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav-links {
    color: #eaeaea;
    font-size: 20px;
    margin-left: 10px ;
    margin-right: 50px;
    text-decoration: none;
}
.nav-links:hover {
    cursor: pointer;
    opacity: 0.5;
}


/* Body Styles */

.app {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    background-color: rgb(0, 0, 0);
}

.app__hero {
    background-image: url('./images/roof-background.jpg');
    display: flex;
    align-items: center;
    justify-content: center;
    
     
    width: 100vw;
    height: 100vh;
    margin-top: -20px;
   
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    object-fit: contain;
    
    position: relative;
    box-sizing: border-box;
}

.app__hero-overlay_shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.4);
    z-index: 1;
}

.app__hero-logo {
    opacity: 0.7;
    max-width: 66%;
    
}

.app__content {
    position: relative;
    z-index: 2;
    width: 400px;
    height: 200px;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 125px;
}

.app__content-h1 {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-family: Helvetica;
    font-size: 32px;
    color: white;
    opacity: 0.8;
    margin: 20px 0px;
}

.app__contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(39, 110, 225);
    color: rgb(255, 255, 255);
    width: 250px;
    font-size: 24px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    cursor: pointer;
    padding: 20px;
}
.app__contact-button a {
    text-decoration: none;
    color: aliceblue;
}

.app__contact-button:hover {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(34, 91, 183);
    color: white;
    opacity: 0.7;
  }


/* Sevices Section */

  .app__body {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

.app__body-text {
    padding: 20px;
    margin: 40px 0;
    width: 400px;
    background-color: rgb(234, 234, 234);
    border-radius: 5px;
    
    border-style: outset;
    border-color: rgb(167, 166, 166);

    opacity: .8;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
  }
  .app__body h1 {
    font-size: 40px;
  }
  .app__body-text h2 {
    font-size: 18px;
  }

.app__list-description {
    padding-top: 2px;
  }


/* Gallery Section */

.app__gallery-grid {
    margin: 20px auto;
    width:auto;
    height:auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}
.app__gallery-grid-1 {
    margin: 10px;
    width: 500px;
    height: 310px;
    display: flex;
    text-align: center;
}
.app__gallery-img-caption {
    color: #eaeaea;
    margin-top: 35px;

}
.app__gallery-grid-img {
    width: 500px ;
}


.app__gallery-heading {
    background-color: rgb(233, 233, 233);
    color: rgb(39, 39, 39);
    text-align: center;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    margin-bottom: 0;
    margin-top: 25px;
}
.gallery-container {
    width: 400px;
    margin-bottom: 30px;
}
.carousel-inner {
    height: 300px;
}
.carousel-item {
    height:100%;
}
.carousel-item img {
    height: 100%;
    object-fit: cover;
}


/* Testimonials */

.testimonials {
    padding: 20px 0px;
}
.testimonials-heading {
    color: aliceblue;
    text-align: center;
}

.testimonials-p {
    color: rgb(184, 184, 184);
    text-align: center;
}


/* Footer */

.footer {
    padding: 15px 0px;
    background-color: rgb(183, 184, 185);
    width: 100%;
    text-align: center;

}
.footer h1 {
    font-size: 18px;
}


/* Media Query For Phones */

@media (max-width:480px)  {
    .app__content {
        margin-top: -80px;
    }
    .navbar-2 {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .nav-logo-container img {
        max-width: 75px;
    }
    .nav-links-container {
        max-width: 100vw;
        flex-wrap: wrap;
        padding: 10px;
    }
    .nav-links {
        margin-right: 15px;
    }
    .nav-links:last-child {
        margin-right: 0px;
    }
 }