/* General properties */

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Inter", sans-serif;
    color: #343a40;
    font-size: 17px;
}

main {
    max-width: 1050px;
    padding-left: 30px;
    padding-right: 30px;
    margin: auto;
    overflow: auto;
}

p {
    line-height: 1.57;
    margin-bottom: 0;
}

h2 {
    margin-top: 45px;
    margin-bottom: 25px;
}

h3 {
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Profile properties */

.profile-image {
    border-radius: 50%;
    width: 210px;
}

.profile-image-container {
    float: right;
    padding-left: 4%;
}

/* Paper properties */

.paper {
    list-style: none;
}

.paper li {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
    line-height: 1.57;
}

.paper img {
    border-radius: 4%;
    width: 140px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .15), 0 3px 10px 0 rgba(0, 0, 0, .15);
    margin-right: 20px;
    vertical-align: middle;
}

.paper-title {
    color: #343a40;
    font-weight: bold;
}

.subtle-link a {
    color: #0069db;
}

.subtle-link a:hover {
    border-bottom-color: transparent;
    font-weight: 400;
}

.nowrap {
    white-space: pre;
}

.venue {
    font-style: italic;
}

.mediation-thumbnail {
    padding: 8px 6px
}

/* Blog properties */

.blog li {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
    list-style: none;
}

.blog img {
    border-radius: 4%;
    width: 155px;
    margin-right: 20px;
    vertical-align: middle;
}

/* Project properties */

.project li {
    display: flex;
    margin-bottom: 10px;
    align-items: center;
    list-style: none;
}

.project img {
    border-radius: 3%;
    width: 120px;
    margin-right: 10px;
}

/* Header properties */

header {
    background-color: #343a40 !important;
}

.navbar {
    max-width: 1050px;
    padding-left: 30px;
    padding-right: 30px;
    margin-right: auto;
    margin-left: auto;
}

/* Footer properties */

footer {
    background-color: #f3f3f3;
    border-top: 1px solid #e8e8e8;
    color: #828282;
    height: 65px;
    margin-top: 25px;
}

.footer-container {
    max-width: 1050px;
    display: flex;
    margin: auto;
    justify-content: space-between;
    padding-left: 30px;
    padding-right: 30px;
    align-items: center;
}

footer a {
    color: #828282
}

footer a:hover {
    text-decoration: none
}

footer .footer-social-media {
    font-size: 36px;
    text-align: center
}

.profile-contact {
    font-size: xx-large;
    text-align: center;
    padding-top: 3px;
}

.profile-contact a {
    text-decoration: none;
}

.fa {
    color: #969696;
}

/* Responsive properties */

@media screen and (max-width: 480px) {
    .paper img {
        width: 80%;
        margin: 20px 20px 10px 0;
    }

    .blog img {
        width: 80%;
        margin: 20px 20px 10px 0;
    }

    .project img {
        width: 80%;
        margin: 20px 20px 10px 0;
    }

    .paper li {
        display: block;
        font-size: 16px;
    }

    .blog li {
        display: block;
        font-size: 16px;
    }

    .project li {
        display: block;
        font-size: 16px;
    }

    p {
        font-size: 16px
    }
}