html, body {
    margin: 0;
    font-family: "verdana", sans-serif;
    font-size: 13pt;
}


a {
    color: #ee6352;
    text-decoration: none
}

a:hover {
    color: #de2c16;
    text-decoration: underline
}

a img:hover {
    transform: scale(1.2);
    transition-duration: .2s;
    transition-timing-function: ease-out
}

li {
    margin-top: 7px;
}

#navbar {
    background-color: skyblue;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 0, 0, 0.11);
    padding: 0 1rem;
}

#navbar h1 {
    margin: 20px;
    cursor:  default;
    color:  black;
    font-weight: bold;
    font-size: min(25pt, 4.4vw);
}

#i2m {
    display:  block;
    margin-right:  20px;
}


header {
    position: fixed;
    width: 100%;
    z-index: 0;
    height: 400px;
    background-color: #003853;
    top: 0;
    left: 0;
}


#content {
    background-color: rgba(238,235,231,1);
    width: 100%;
}

main {
    max-width: 1300px;
    margin: auto;
}

section {
    padding: 30px;
    border-bottom: 2px solid #9c9c9c;
}

section:last-child {
    border-bottom: none;
}

#presentation {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    padding-top: 30px;

}

#profile {
    margin: auto;
    text-align: center;
    max-width: 550px;
}

#portrait {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 55%;
    object-fit: cover
}

#social {
    padding: 0;
}

#social li {
    display: inline;
    font-size: 12pt;
}

#social li::after {
    content: "\00a0|";
}

#social li:last-child::after {
    content: none;
}

#about {
    flex: 1;
    min-width: 300px;
    font-size: 13pt;
    padding: 30px;
}

#about h2 {
    text-align: center;
}

#publications li {
    margin-top: 12px;
}

footer {
    margin-top: 50px;
    padding-bottom: 10px;
    text-align: center;
}