* {
    font-family: 'Open Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
    background-color: rgba(0,76,157,1);
}

body {
    padding: 0;
    margin: 0;
    position: relative;
    font-size: large;
}

.icon-left {
    margin-right: 6px;
}

.scrolled {
    background-color: #007bff !important;
}

a.anchor {
    display: block;
    position: relative;
    top: -150px;
    visibility: hidden;
}

.nav-link {
    color: white !important;
    position: relative;
}

.nav-link:hover {
    font-weight: bolder;
}

.nav-link:after {
    position: absolute;
    content: '';
    height: 2px;
    /* adjust this to move up and down. you may have to adjust the line height of the paragraph if you move it down a lot. */
    bottom: 4px;


    /******
    optional values below
    ******/

    /* center - (optional) use with adjusting width   */
    margin: 0 auto;
    left: 0;
    right: 0;
    width: 0;
    background: white;

    /* optional animation */
    -o-transition:.5s;
    -ms-transition:.5s;
    -moz-transition:.5s;
    -webkit-transition:.5s;
    transition:.5s;
}

.nav-link.active {
    position: relative;
    font-weight: bolder;
}

.nav-link.active:after {
    position: absolute;
    content: '';
    height: 2px;
    /* adjust this to move up and down. you may have to adjust the line height of the paragraph if you move it down a lot. */
    bottom: 4px;


    /******
    optional values below
    ******/

    /* center - (optional) use with adjusting width   */
    margin: 0 auto;
    left: 0;
    right: 0;
    width: 50%;
    background: white;
}

.header {
    width: 100%;
    height: 100vh;

    /* you can change your gradient at https://cssgradient.io */
    background: rgb(0,76,157);
    background: -moz-linear-gradient(180deg, rgba(0,76,157,1) 0%, rgba(0,123,255,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(0,76,157,1) 0%, rgba(0,123,255,1) 100%);
    background: linear-gradient(180deg, rgba(0,76,157,1) 0%, rgba(0,123,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#004c9d",endColorstr="#007bff",GradientType=1);
}

.header-title {
    color: white;
}

.header-pic{
    height: 200px;
}

.header-social-buttons{
    margin-top: 8px;
}

.header-social-buttons > a{
    color: white;
}

.section {
    padding: 32px 32px 64px;
}

.section-title {
    text-align: center;
    font-weight: bolder;
    margin-bottom: 32px;
    position: relative;
}

.section-title:after {
    position: absolute;
    content: '';
    height: 3px;
    /* adjust this to move up and down. you may have to adjust the line height of the paragraph if you move it down a lot. */
    bottom: -10px;

    margin: 0 auto;
    left: 0;
    right: 0;
    width: 64px;
    background: orange;
}

.about-me-section {
    background-color: #ffffff;
}

.skills-section {
    background-color: #f7f7f7;
}

.skills-type-card {
    padding-top: 30px;
    margin-top: 40px;
}

.skills-type-icon {
    position: absolute;
    background-color: #007bff;
    padding: 16px;
    -moz-border-radius:50%;
    -webkit-border-radius:50%;
    color: white;
    text-align: center;
    left: 50%;
    width: 80px;
    height: 80px;
    margin-left: -40px;
    top: -40px;
}

.projects-section {
    background-color: #ffffff;
}

#project-card-1-content {
    visibility: hidden;
    color: transparent;
    transition: 500ms;
    -webkit-transition: 500ms; /* Safari prior 6.1 */
}

#project-card-1:hover #project-card-1-content {
    visibility: visible;
    background-color: #000000dd;
    color: white;
}

#project-card-2-content {
    visibility: hidden;
    color: transparent;
    transition: 500ms;
    -webkit-transition: 500ms; /* Safari prior 6.1 */
}

#project-card-2:hover #project-card-2-content {
    visibility: visible;
    background-color: #000000dd;
    color: white;
}

#project-card-3-content {
    visibility: hidden;
    color: transparent;
    transition: 500ms;
    -webkit-transition: 500ms; /* Safari prior 6.1 */
}

#project-card-3:hover #project-card-3-content {
    visibility: visible;
    background-color: #000000dd;
    color: white;
}

.footer {
    min-height: 30vh;

    /* you can change your gradient at https://cssgradient.io */
    background: rgb(0,76,157);
    background: -moz-linear-gradient(0deg, rgba(0,76,157,1) 0%, rgba(0,123,255,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0,76,157,1) 0%, rgba(0,123,255,1) 100%);
    background: linear-gradient(0deg, rgba(0,76,157,1) 0%, rgba(0,123,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#004c9d",endColorstr="#007bff",GradientType=1);
}
