/* Even if Pandoc wraps the image in a <p>, this makes it behave like it's not there */
p:has(> img:only-child) {
    display: contents;
    width:fit-content;
    height:fit-content;
}

body {
    justify-items:center;
}

.menu ul li{
    display:inline;
}

.menu ul li:after{
    content: " | ";
}

.menu ul li:last-child:after{
    content: "";
}
