/*
@font-face {
    font-family: 'Roboto';
    src: url('Roboto-ThinItalic-webfont.eot');
    src: url('Roboto-ThinItalic-webfont.eot?#iefix') format('embedded-opentype'),
         url('Roboto-ThinItalic-webfont.woff') format('woff'),
         url('Roboto-ThinItalic-webfont.ttf') format('truetype'),
         url('Roboto-ThinItalic-webfont.svg#RobotoThinItalic') format('svg'); (under the Apache Software License). 
    font-weight: 200;
    font-style: italic;
}
*/
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}

header {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}

main {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}


#navdiv {
    max-width: 90vw; /* Set the maximum width for the containing div */
    /*margin: 0 auto; /* Center the containing div */
    margin-right: true; /* Center the containing div */

    text-align: right;
}

nav {
    display: flex;
    justify-content: right;
    background-color: #444;
    padding: 10px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}

nav a:hover {
    color: #ddd;
}
