
  @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&family=Roboto+Mono:wght@600&display=swap');




     /* hero background image */
    .bgimage {
        height:100vh;
        background: url('./images/bg-image.jpg');
        background-size:cover;
        position:relative;
    }

    /* text css above hero image*/
    .hero_title {
        font-size: 4.5rem;
        font-family: "montserrat", sans-serif;
    }
    .hero_desc {
        font-size: 2rem;
        font-family: "Roboto Mono", monospace;
    }
    .hero-text {
        text-align: center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
    }

    /* about section image css */
.imageAboutPage {
    width: 100%;
    border-radius: 10px;
}

/* services section css */
.servicesText.card {
    height: 280px;
    cursor: pointer;
  }
.servicesIcon {
    font-size: 36px;
    text-align: center;
    width: 100%;
}
.card-title {
    text-align: center;
}
.card:hover .servicesIcon {
    color: #008000;
}
.servicesText:hover {
    border: 1px solid #008000;
}

/* display background color black on navbar scroll */
.navbarScroll.navbarDark {
    background-color: black;
}

/* social media icons styling */
.social-icons {
    font-size: 36px;
    cursor: pointer;
}
.fa-facebook:hover,.fa-instagram:hover,.fa-twitter:hover,.fa-linkedin:hover, .fa-twitch:hover {
    color: #008000;
}
.fab {
    color: #000000;
}
/* footer styling */
#footer {
    background-color: #808080;
    text-align: center;
}

/* spacing on all sections */
#about, #services, #portfolio, #contact {
    margin-top: 4rem;
    padding-top: 4rem;
}
#contact {
    padding-bottom: 4rem;
}

.card-img-top {
    width: 100%;
    height: 15vw;
    object-fit: cover;
}

.text-center {
    font-family: "Roboto Mono", monospace;
    
}
