/* Yes, this site was made from scratch and designed by me. */

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    color: #1D4570;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 25px 0;

    background-image: url("/assets/images/white_pattern.svg");
    background-size: cover;
}

p {
    font-size: 18px;
    line-height: 1.5em;
}

.box {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #cfcfcf;
    border-radius: 3px;

    margin: 25px;
    padding: 50px;

    display: flex;
    align-content: center;
    width: 750px;
    flex-direction: row;
}

.about h1 {
    margin-bottom: 5px;
}

.about p {
    margin-bottom: 0;
}

h1,
h2 {
    margin: 0;
}

h2 {
    font-size: 20px;
}

.logo {
    flex: 1;
    padding-right: 25px;

}

.logo img {
    width: 100%;
}

.content {
    flex: 3;
}

.list {
    margin-bottom: 0;
    font-size: 14px;
    color: #136D88;
    font-weight: normal;
}

.social {
    color: white;
    margin: 0;
    padding: 0;
    list-style: none;
}

.projects {
    display: flex;
    flex-direction: column;
}

.project {
    display: flex;
    flex-direction: row;
    clear: both;
}

.project:not(:first-child) {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #ddd;
}

.project__details {
    flex: 3;
}

.project__title {
    display: block;
    font-size: 1.17em;
    font-weight: bold;
    color: #1D4570;
    text-decoration: none;
    margin-top: 20px;
}

.project__thumnail {
    flex: 1;
    padding: 25px 25px 25px 0;
}

.project__thumnail img {
    border-radius: 3px;
    border: 1px solid #cecece;
    width: 100%;
}

.social {
    margin-top: 10px;
}

.social li {
    display: inline-block;
}

.social li a {
    font-size: 26px;
}

.fa-twitter {
    color: #1DA1F2;
}

.fa-github {
    color: #24292E;
}

.fa-linkedin {
    color: #0077B5;
}

.fa-envelope-o {
    color: #555;
}

.post .featured-image img {
    width: 100%;
}