@font-face{
    font-family: 'imported-font';
    src: url('journal.ttf');
}

.nav {
    width: calc(100% - 20px);
    box-sizing: border-box; 
    margin: 10px 10px 0 10px;
    background-color: #448efc;
    overflow: hidden;  
}
.nav_content a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-family: Georgia, serif;
    text-transform: uppercase;
}
.nav_content a:hover {
    background-color: #ddd;
    color: black;
}

body {
    background-image: url('../images/subtle_white_feathers.png');
    background-size: cover; /*cover the entire site*/
    background-position: center; 
    background-repeat: no-repeat; /* if image does not cover entire site do not repeat image to fit screen */
    margin: 0;
    background-color: #fff;
}

.header_container {
    margin: 30px 10px 0 10px;
    position: static;
    font-family: Palatino;
}

.body_container {
    margin: 10px 10px 0 10px;
    position: static;
    font-family: Palatino;
}

.footer_container {
    position: static;
    margin: 10px 10px 0 10px;
    font-family: Palatino;
}