body {
    font-family: "Playfair Display";
}

div.page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 3rem;
}

div.intro img {
    width: 200px;
    border-radius: 50%;
}

h1 {
    margin-top: 0px;
}

a {
    color: black;
}

a.section-tag {
    text-decoration: none;
}

a.section-tag:visited {
    color: black;
}

span.section-tag {
    display: inline-block;
    width: 15px;
    height: 15px;
}

a.section-tag:hover+span {
    background: url(https://icons.iconarchive.com/icons/steve/zondicons/256/Link-icon.png);
    background-size: cover;
}

span.emph {
    font-style: italic;
}

span.unemph {
    font-style: normal;
}

span.mono {
    font-family: "Space Mono"
}

div.figure img {
    display: block;
    max-width: 1000px;
    max-height: 300px;
    margin: auto;
}

div.figure p.caption {
    text-align: center;
    margin: 0px;
    font-size: smaller;
    font-style: italic;
}

@media (max-width: 700px) {
    div.page {
        grid-template-columns: 1fr;
    }

    div.intro {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    div.intro img {
        width: 64px;
        height: 64px;
    }

    div.intro p#name {
        margin: 0;
    }

    div.intro p#study, div.intro p#motivation {
        display: none;
    }
}
