body {
    background-color: white;
}

/* Nav bar logo, moved out from html for better flexiblity. */
.navbar-brand img {
    width: 50px;
    height: 50px;
}

/* Set jumbotron background to white for cleaner look */
.jumbotron {
    background-color: white;
}

/* Padding out Its All about Me & A Particular Set of Skills */
.aboutMe {
    padding-top: 50px;
    padding-left: 50px;
    text-align: justify;
    margin: 0px;
}

/* Align My Work geading with cards */
.sectionHeading {
    text-align: calc(100% - 100 px);
}

/* Added border-radius to try and match the rounding off on the cards */
.imageContainer img {
    width: 100%;
    border-radius: 1%;
}

/* Added margin to cardcontianer to pad out for btter look */
.cardContainer {
    margin-top: 20px;
}

/* remove margins around card for space to scale up */
.card {
    margin: 0 auto;
}

/* scale up effect on card on hover */
.card:hover {
    transform: scale(1.05);
    transition: all 0.5s ease-in-out;
}

/* resize card images to same size */
.card img {
    width: 100%;
    height: 25vw;
    object-fit: cover;
}

/*Added darker border to popover dialog to enhance over white background */
.popover {
    border-color: #333;
}

/* Align contact section to center */
.contact {
    text-align: center;
}

/* send email styling */
.send-email {
    color: black;
    font-size: 18px;
    text-align: center;
}

/* send email hover styling */
.send-email:hover {
    color: black;
    opacity: 0.5;
}

/* send email tooltip */
.send-email .send-email-tooltip {
    visibility: hidden;
    width: 120px;
    margin: 15px;
    background-color: #333;
    columns: #fff;
    text-align: center;
    padding: 10px 0;
    border-radius: 6px;
    position: absolute;
    color: white;
}

/* shows send email tooltip */
.send-email:hover .send-email-tooltip {
    visibility: visible;
}

/* social icons class styling */
.social-icons {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 2em 0;
    padding: 0;
}

/* Font awesome styling */
.fa {
    padding: 20px;
    font-size: 30px;
    width: 50px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
    border-radius: 15%;
    display: inline;
}

/* Font awesome hover styling */
.fa:hover {
    opacity: 0.5;
}

/* Font awesome github styling */
.fa-github {
    background-color: #24292f;
    color: white;
}

/* Font awesome twitter styling */
.fa-twitter {
    background: #55ACEE;
    color: white;
}

/* Font awesome linkedin styling */
.fa-linkedin {
    background: #007bb5;
    color: white;
}

/* Created by text center algined */
.created-by {
    text-align: center;
}