@import url('https://fonts.cdnfonts.com/css/libertinus-sans');

html,
body {
    height: 100%;
}
body {
    font-family: 'Libertinus Sans', 'Arial', 'sans-serif';
    font-size: 1.25em;
    margin: 0 auto;
    hyphens: auto;
}
.header-menu {
    height: 125px;
    background-color: white;
}
.navbar {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%
}
.logo {
    font-size: 2em;
    font-weight: 700;
    color: dimgrey;
    text-decoration: none;
    display: inline-block;
}
.navlinks {
    display: flex;
    list-style: none;
}
.nav-item a {
    display: inline-block;
    font-size: 1.3em;
    color: dimgrey;
    padding: 0 10px;
}
.nav-item a:link,
.nav-item a:visited {
    text-decoration: none;
}
.nav-item a:hover {
    text-decoration: underline;
}
main {
    display: flex;
    flex: 0.6;
    width: 100%;
}
article {
    margin: 0 30em 0 20em;
}
article h1 {
    font-size: 1.75em;
}
article h2 {
    font-size: 1.25em;
}
article h3 {
    font-size: 1em;
}
ul[role="publications"] {
    list-style: none;
}
ul[role="publications"] li {
    margin-bottom: 0.75em;
}
ul[role="projects"] li {
    margin-bottom: 1.5em;
}
ul[role="projects"] li p:first-child {
    margin-bottom: -0.7em;
}
ul[role="projects"] li a {
    text-decoration: none;
}
p[role="resume"] img {
    margin: 2.5em 2.5em 0 2.5em;
}
.toc {
    display: block;
    position: fixed;
    top: 15%;
    left: 10%;
    width: 15em;
    font-size: smaller;
}
.toc p img {
    border-radius: 50%;
    width: 75%;    
}
.toc ol {
    padding-left: 0;
    list-style: none;
}
.toc ol li {
    font-size: 1.2em;
    padding: 0.25em 0 0.25em 0.5em;
}
.toc ol li a {
    color: gray;
    text-decoration: none;
}
.toc ol li a img {
    margin-right: 0.5em;
}
