﻿* {
    box-sizing: border-box;
}
/* Don't want tiny white border inside browser window - apply to html and body. */
html, body {
    margin: 0;
    padding: 0;
}

#titleNav {
    text-align: center;
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 0;
    z-index: 1;
    width: 100%;
    background-color: rgb(194, 173, 154);
    padding-top: 2rem;
    padding: 1rem;
    color: white;
    font-family: serif;
    font-weight: bold;
    box-shadow: 0rem 0rem 0.1rem black;
}

#content {
    text-align: center;
    padding-top: 0rem; /* prevent the top of the content from getting hidden under the fixed titleNav */
    padding-bottom: 2rem; /* prevent the the bottom of the content from getting hidden under the fixed footer */
    font-size: 1.5rem;
    line-height: 2rem;
    margin-top: 4rem;
    margin-bottom: 2.5rem;
    font-family: "Geneva", sans-serif; /* no tail font is more readable for small font */
    color: black;
}

#footer { /* footer fixed, always at the bottom */
    position: fixed;
    bottom: 0rem;
    left: 0rem;
    z-index: 1;
    background-color: rgb(194, 173, 154);
    color: white;
    width: 100%;
    text-align: center;
    padding: 0.5rem;
    font-size: 1.5rem;
    font-family: "Geneva", sans-serif;
    color: white;
}
