/* Overall page */

body {
    max-width: 700px;
    margin: 40px auto;
    padding: 0 20px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.5;

    color: #222;
    background-color: white;
}


/* Your name */

h1 {
    font-size: 2em;
    margin-top: 0;
    margin-bottom: 30px;
    line-height: 1.2;
}


/* Section headings */

h2 {
    font-size: 1.5em;
    margin-top: 35px;
    margin-bottom: 15px;
    line-height: 1.2;
}


/* Paragraphs */

p {
    margin-top: 0;
    margin-bottom: 16px;
}


/* Links */

a {
    color: #0000ee;
    text-decoration: underline;
}

a:visited {
    color: #551a8b;
}

a:hover {
    color: #0000aa;
}


/* Research publication list */

ul {
    padding-left: 30px;
}

li {
    margin-bottom: 12px;
}


/* Sections */

section {
    margin-bottom: 35px;
}


/* Optional profile picture */

.profile-photo {
    width: 180px;
    height: auto;

    float: right;

    margin-left: 25px;
    margin-bottom: 15px;
}


/* Mobile phones */

@media (max-width: 600px) {

    body {
        margin: 25px auto;
        padding: 0 18px;
        font-size: 16px;
    }

    .profile-photo {
        float: none;
        display: block;

        width: 160px;

        margin-left: 0;
        margin-bottom: 20px;
    }
}
