
body {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: rgb(63, 63, 63)
}

h1 {
    font-variant: small-caps;
}

div#main_container {
    display: grid;
    grid-template-columns: 1fr 5fr;
    gap: 30px
}

div#title {
    grid-column-start: 2;
}

div#navbar {
    font-variant: small-caps;
    text-align: right;
}

div#content {   
}

#navbar ul {
    list-style-type: none;
}

#navbar a {
    text-decoration: none;
    color: rgb(128, 128, 128)
}

#navbar a:hover {
    text-decoration: underline;
    color: rgb(63, 63, 63)
}