html {
    height: 100%;
}

body {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 0vh;
}

#background-image-container {
    background-image: url('background3.jpg');
    background-size: cover;
    /* makes image fill the area while cropping edges if needed */
    background-repeat: no-repeat;
    /* prevents tiling */
    background-position: center center;
    /* keeps image centered */
    min-height: 100vh;
}

header {
    display: flex;
    flex-direction: row;
    height: 90%;
    color: #fff;
    margin: 0;
    /* height: 100vh; */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* justify-content: space-around; */
    /* Horizontal centering */
    /*align-items: flex-start;
    /* Align to top */
    /*padding-top: 40px;
    /* Space from the top */

}


.site-header {
    /* display: flex; */
    /* Enable Flexbox */
    /* justify-content: space-around; */
    /* Pushes h1 left, nav right */
    align-items: center;
    /* Vertically align items */

    color: white;
}

#header-left-half {
    height: 100%;
    width: 50%;
    padding: 20px 40px;
    align-content: center;
    justify-content: center;
}

#header-right-half {
    height: 100%;
    width: 50%;
    align-content: right;
    justify-self: right;
}


.site-header h1 {
    margin: 0;
    font-size: 80px;
}

.site-header nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 30px;
}


/*
main {
    height: 30%;
    padding: 2em;
    /* background: white; */
/*margin: 1em;
}*/


footer {
    font-family: 'Franklin Gothic Medium', Arial, sans-serif;
    height: 4px;
    /*background-color: #444;*/
    color: #9f4408;
    text-align: right;
    padding: 0%;
    margin-top: 30em;
    margin-bottom: 0;
    margin-right: 12em;
    align-content: right;
    /* position: relative; */
    /* bottom: 0; */
}