/* display background color black on navbar scroll */
.navbarScroll.navbarDark {
    background-color: blue;
}

/* hero background image */
.bgimage {
    height:100vh;
    background: url('images/headerImage.jpg');
    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;
}

#contact {
    padding-bottom: 4rem;
}
/* about section image css */
.imageAboutPage {
    width: 100%;
}

/* cards section css */
.websiteText.card {
    height: 280px;
    cursor: pointer;
  }
.websiteIcon {
    font-size: 36px;
    text-align: center;
    width: 100%;
}
.card-title {
    text-align: center;
}
.card:hover .websiteIcon {
    color: #230399;
}
.websiteText:hover {
    border: 1px solid #230399;
}
.col-lg-6{
    text-align: center;
    margin: auto;
    display: block;
}

