
body {
    font-family: "Nunito", sans-serif;
    font-weight: 300;
    background-color: #f6f6f6;
    margin: 0px;
    height: 100%;
}

input {
    font-family: "Nunito", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    color: #000000;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

/* Page */

.page-container {
    position: relative;
    min-height: 100vh;
}

.page-content {
    padding-bottom: 6rem;
}

/* Top Nav */

.nav-div-outer {
    width: 100%;
    background-color: #fcfcfc;
}

.nav-div {
    width: 80%;
    margin: auto;
    display: flex;
}

.nav-link {
    text-decoration: none;
}


.nav-logo-div {
    width: 8%;
    padding-top: 5px;
    display: flex;
}

.nav-header-div {
    width: 90%;
    display: flex;
}

.nav-header-text {
    color: #B21F3E;
}

.nav-div-line-container {
    width: 100%;
    margin: auto;
    display: block;
}

.nav-div-line-hr {
    height: 1px;
    background-color: #d0d0d0;
    border: none;
}

/* Content */

.front-div {
    width: 80%;
    margin: auto;
}

.index-message-div {
    padding-top: 20px;
}

.index-message-h1 {
    text-align: center;
    color: #000000;
}

.index-message-h2 {
    text-align: center;
    color: #a00000;
}

/* Index Search */


.index-search-div-outer {
    margin-top: 50px;
    float: center;
}

.index-search-div-inner {
    width: 40%;
    margin: 0px auto;
    position: relative;
}

.index-search-input {
    width: 100%;
    padding: 10px 10px 10px 48px;
    border: 1px solid #eeeeee;
    background-color: #f9f9f9;
    border-radius: 10px;
    font-size: 20px;
    color: #888888;
}

.index-search-input:hover {
    background-color: #ffffff;
    border: 1px solid #dddddd;
}

.index-search-input:focus {
    outline: none;
    border: 1px solid #bbbbbb;
    color: #222222;
}

.index-search-input-span {
    padding: 10px;
    position: absolute;
    left: 2px;
}

.index-search-input-img {
    height: 24px;
    width: 24px;
    opacity: 0.5;
}

.index-help-div {
    width: 40%;
    text-align: center;
    margin: 50px auto;
}

.index-browse-link {
  color: #3292D1;
  margin: 5px;
  text-decoration: none;
}
/* Generic Info */

.generic-info-div {
    width: 80%;
    margin: auto;
}

.generic-info-div p {
    font-size: 20px;
    color: #444444;
}

.generic-info-about-div {
    text-align: center;
}

.generic-info-about-img {
    width: 20%;
    height: 20%;
}

/* Footer */

.footer-div-outer {
    height: 6rem;
    width: 100%;
    justify-content: center;
    position: absolute;
    bottom: 0;
}

.footer-div-inner {
    margin-top: 1rem;
    height: 5rem;
    width: 100%;
    background-color: #222222;
}

.footer-div {
    width: 80%;
    margin: 0 auto;
    padding-top: 10px;
    justify-content: center;
}

.footer-links {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-link {
    text-decoration: none;
    color: #888888;
    margin: 5px;
    font-size: 12px;
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
}

.footer-link:hover {
    color: #dddddd;
}

.footer-copyright {
    width: 100%;
    margin: 0 auto;
    padding: 5px;
    color: #666666;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Search */

.nav-div-brand {
    width: 35%;
    display: flex;
}

.nav-div-padding {
    width: 0%;
}

.nav-search-div-outer {
    width: 30%;
    margin-top: 27.5px;
    justify-content: left;
    text-align: left;
    float: left;
}

.nav-search-div-inner {
    position: relative;
}

.nav-search-input {
    width: 100%;
    padding: 10px 10px 10px 36px;
    border: 1px solid #eeeeee;
    background-color: #f6f6f6;
    border-radius: 20px;
    color: #888888;
}

.nav-search-input:hover {
    background-color: #e9e9e9;
    border: 1px solid #dddddd;
}

.nav-search-input:focus {
    outline: none;
    border: 1px solid #bbbbbb;
    color: #222222;
}

.nav-search-input-span {
    padding: 10px;
    position: absolute;
    left: 2px;
}

.nav-search-input-img {
    height: 16px;
    width: 16px;
}

