    /* fonts :
    turnip-re
    best-choice
    fig-serif, fig-sans, fig-script
    lores-21-serif, lores-22-bold-oakland, lores-22-narrow, lores-22-serif,
    lores-28, lores-28-narrow, lores-9-minus-narrow, lores-9-minus-wide,
    lores-9-narrow, lores-9-plus-narrow, ... (too many lol)
    */
body {
    margin: 20px;
    /* background-color: rgb(255, 249, 198);  */
    display: flex;
    justify-content: center;
}
nav {
    /* background-image: url("../media/lemon2.png");
    background-position: center;
    background-size: 150px;
    background-repeat: no-repeat; */
    display:flex;
    justify-content: center;
    padding: 20px;
    border-style: dotted;
    border-radius: 10px;
    padding: 50px;
}
ul {
    display: flex;
    justify-content: center;
    font-family: lores-9-narrow;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
li {
    display: inline;
    margin: 5px;
}
li:hover, li:active {
    font-style: italic;
    background-color: rgb(255, 0, 238, 0.2);
    color:rgb(255, 0, 238);
}
/* li:before {
    content: "\2605";
    padding: 0;
} */
li > a {
    text-decoration: none;
    color: black;
}
h1.header {
    margin: 0px;
    padding: 0px;
    font-family: fig-serif;
    font-size: 50px;
    font-weight: 800;
    text-align: center;
}
.header-container > p {
    font-family: lores-9-narrow;
    text-align: center;
}
@media (min-width: 600px) {

}
div.main {
    display: block;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    border-radius: 10px;
    display: inline-block;
    padding: 8px;
}