/* display background color black on navbar scroll */
.navbarScroll.navbarDark {
    background-color: black;
}

/* hero background image */
.bgimage {
    height:100vh;
    background: url('heroImage.jpeg');
    background-size:cover;
    position:relative;
}
/* text css above hero image*/
.hero_title {
    font-size: 4.5rem;
}
.hero_desc {
    font-size: 2rem;
}
.hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}


/* spacing on all sections */
/* #about, #services, #portfolio, #contact {
    margin-top: 4rem;
    padding-top: 4rem;
} */
#contact {
    padding-bottom: 4rem;
}
/* about section image css */
.imageAboutPage {
    width: 100%;
}

/* projects section css */
.servicesText.card {
    height: 280px;
    cursor: pointer;
  }
.servicesIcon {
    font-size: 36px;
    text-align: center;
    width: 100%;
}
.fa-solid{
    font-size: 36px;
    text-align: center;
    width: 100%;
}
.card-title {
    text-align: center;

}
.card:hover .fa-solid {
    color: #008000;
}
.servicesText:hover {
    border: 1px solid #008000;
}

/* social media icons styling */
.social-icons {
    font-size: 36px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.fa-linkedin:hover,.fa-code:hover,.fa-github:hover,.fa-instagram:hover {
    color: #008000;
}
.fa-linkedin,.fa-code,.fa-github,.fa-instagram{
    color: #000000;
    flex-direction: row;
}
/* footer styling */
#footer {
    background-color: #808080;
    text-align: center;
}