/* hero background image */
.bgimage {
    height:100vh;
    background: url('img/programming.png');
    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;
}

.abt-info, .par{
    color: white;
}

/**background color*/
#about, #skills, #projects, #contact{
    background-color:rgb(54, 46, 68);
}

/* skills section*/
.card-body{
    background-color: #dad5d5;
}
.skillsText.card {
    height: 280px;
    cursor: pointer;
  }
.skillsIcon {
    font-size: 36px;
    text-align: center;
    width: 100%;
}
.card-title {
    text-align: center;
}

.skillsText:hover {
    border: 1px solid indigo;
}

/* display background color black on navbar scroll */
.navbarScroll.navbarDark {
    background-color: rgb(0, 0, 0);
}

/* social media icons styling */
.social-icons {
    font-size: 36px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: fixed;
    right: 1%;
    bottom: 50%;
    
}
.fa-facebook:hover,.fa-github:hover {
    color: #008000;
}
.fab {
    color: white;
}

/* spacing on all sections */
#about, #skills, #projects, #contact {
    margin-top: 4rem;
    padding-top: 4rem;
}
#contact {
    padding-bottom: 4rem;
}
