body {
    background-color: aliceblue;
    font-family: "Roboto", sans-serif;
}
nav {
    background-color: white;
    border-radius: 10px;
}
nav ul {
    font-size: 24px;
    font-weight: 800;
    padding: 10px;
    overflow: hidden;
    display: flex;
    justify-content: flex-end
}
nav ul li {
    display: inline-block;
    padding-left: 10px;
    padding-right: 10px;
    border-left: 2px solid aliceblue;
    color: black;
}
.link {
    color: black;
    text-decoration: none;
}
.selected {
    padding: 5px;
    background-color: aliceblue;
    border-radius: 10px;
    text-decoration: none;
}



div.header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}