@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: #448efc;
    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 {
    position: static;
    text-align: center;
    padding: 20px;
}

.main_header {
    font-size: 48px;
    font-family: Brush Script MT;
    margin-bottom: 5px;
}

.sub_header {
    font-size: 20px;
    font-family: Palatino; 
    margin-top: 13.5px;
    margin-bottom: 20px;
}

hr {
    width: 20%;
    border: 1px solid #ccc;
    margin: 0px auto 0px auto; /* 20px above and below, centered horizontally */
}

.header_image {
    margin: 0 auto;
    /* the below lines keeps the image centered on all device
    and screen sizes*/
    display: block;
    max-width: 100%;
}

.body_container {
    position: static;
    text-align: center;
    margin: 0 auto;
}

.footer_container {
    position: static;
    text-align: center;
    margin: 0 auto;
    font-family: Garamond;
}


.qoute{
    font-size: 45px;
    font-family: 'imported-font' ;
}

