body {
    background: #eee;
    /*font-family: 'Open Sans', sans-serif;*/
    font-family: 'Raleway', sans-serif;
}

h1, h2, h3 {
    font-weight: 200;
}

#header {
    background:#3e4e5c;
    color: white;
    padding-top: 20px;
    padding-bottom: 10px;
}
#profile-img {
    height: 130px;
    text-align: center;
}
#subheading  {
    color: white;
    font-weight: 200;    
}
.section-header {
    margin-bottom: 40px;
}
#contact-link {
    position: absolute;
    right: 30px;
    top: 0px;
    font-size: 18px;
    color: white;
    transition: all 0.3s;
}
#contact-link:focus, #contact-link:hover {
    outline: none;
    color: #5db3ff;
    text-decoration: none;
}
@media (max-width: 768px) {
    #contact-link {
        right: 20px;
    }
}

/**
* Projects
*/
#projects .row {
    /*margin-bottom: 50px;*/
}
.project-card {
    text-align: center;
    width: 330px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    /*border: 1px solid #c1c8ce;*/
    border-radius: 10px;
    background-color: white;
    box-shadow: 0px 2px 6px #92979c;
    transition: all 0.3s;

    display: block;
    color: black !important;
    text-decoration: none !important;
}
.project-card:hover {
    transform: translateY(-5px);
    cursor: pointer;
}
.project-card:hover .project-card-header {
    border-right: 1px solid #26a1e8;
    border-left: 1px solid #26a1e8;
    border-top: 1px solid #26a1e8;
}
.project-card:hover .project-description {
    border-right: 1px solid #26a1e8;
    border-left: 1px solid #26a1e8;
    border-bottom: 1px solid #26a1e8;
}

.project-card-header {
    /*border-bottom: 1px solid #c1c8ce;*/
    background-color: #b0bdc8;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border: 1px solid #9ea7ae;
    border-bottom: none;
    height: 260px;
    overflow: hidden;
}
.project-card-header img {
    max-height: 260px;
}
.project-description {
    border: 1px solid #9ea7ae;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    text-align: left;
    padding: 0 12px 10px 12px;
    height: 246px;
}
.project-title {
    font-weight: 400;
    margin-bottom: 8px;
}
.project-subtitle {
    color: #8f8f8f;
    font-style: italic;
    margin-top: 0px;
}

/**
* Contact
*/
#contact {
    background-color: white;
    padding-bottom: 20px;
}
#contact-message {
    resize: none;
}
#contact-send {
    transition: all 0.3s;
}

/**
* Footer
*/
#footer {
    padding: 32px 0px;
    background-color: #3e4e5c;
    color: white;
}
#footer p {
    margin-top: 20px;
}

.pot-o-honey {
    display: none;
}

.margin-bot-sm {
    margin-bottom: 12px;
}