/* Base styles */

/* Reset */

* {
    margin: 0;
    padding: 0;
}

html {
    position: relative;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    font-family: Roboto Mono,monospace;
    box-sizing: border-box;
}

.container {
    margin: 0 5%;
}

.width-two-third {
    width: 66.6667%;
}

.margin-one-sixth {
    margin-left: 16.6667%;
}

.text-center {
    text-align: center;
}

.spacer {
    padding: 15px 0;
}

h1 {
    font-size: 2.5rem;
    margin: .6rem 0;
}

main {
    min-height: 100vh;
    padding: 60px 10px 0 10px;
}

.screens-logo {
    width: 20%;
    margin: auto;
}

.site-logo img {
    display: block;
    height: 24px;
    margin: 7px 0;
    width: auto;
}

.main-header {
    background-color: #0a0a23; /* #000000 - #FFFFFF */
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}


.main-header > * {
    display: inline-block;
}

.search form {
    font-size: 1rem;
}

input {
    font-size: inherit;
    color: #FFF;
    background-color: darkslategray;
    border-color: darkslategray;
    display: inline-block;
    font-size: 18px;
    height: 26px;
    margin-top: 6px;
    padding: 0 10px 0 10px;
}

.navigation {
    margin-top: 5px;
}

.main-menu {
    padding: 2px 14px;
    border: 1px solid #FFFFFF;
    color: #FFF;
    text-align: center;
    font-family: lato,sans-serif;
    font-size: 18px;
    margin-right: 10px
}

.main-content p {
    line-height: 1.5rem;
    font-size: 1.17rem;
    font-family: Lato,sans-serif;
    margin: 0 0 1.2rem;
}

.main-footer {
    padding: 20px;
    background-color: #dfdfe2;
    font-family: Lato,sans-serif;
    line-height: 1.6;

    /* set the footer at the bottom */
    /* position: absolute;
    bottom: 0;
    width: 100%; */
}

.notice {
    padding: 15px;
    margin-bottom: 25px;
}

.blue-copy {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

.blue-copy p, .blue-copy a {
    color: inherit;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.blue-copy a:hover {
    background-color: #31708f;
    border-color: #31708f;
    color: #d9edf7;
}
.footer-container {
    font-size: 16px;
    margin: 0 10%;
    overflow-x: hidden;
    padding: 40px 15px;
}
.footer-container .col-header {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    font-size: 16px;
    font-weight: 700;
    padding: 0 15px 15px;
    text-align: center;
}
.footer-bottom .our-nonprofit a {
    padding: 5px;
    color: #2a2a40;
    text-decoration: none;
}
.footer-bottom .our-nonprofit a:hover {
    text-decoration: underline;
}
@media (max-width:500px){
    .search form{
        display: none;
    }
    .main-menu{
        display: none;
    }
    .text-center {
       font-size: 1.85rem;
    }
    .width-two-third {
        width: 100%;
    } 
    .margin-one-sixth {
        margin-left: 0;
    }
    p{
        font-size: 1.8rem;
    }
    .footer-bottom{
        font-size: 1rem;
    }
}