﻿/* style sheet to control colors and visuals (fonts) */

body {
    font-family: "EndzoneSansLight", "sans-serif", "serif";
}

.fas-header {
    background-color: #013369;
    font-family: "EndzoneSansMedium", "sans-serif", "serif";
    /* border-bottom: 1px solid red;  */
}

.fas-header > a {
    color: white;
    font-size: 2.0em;
    font-family: "EndzoneSansLight", "sans-serif", "serif";
    font-weight: bold;
}

input[type="button"] {
    background: #203864;
    border-radius: 4px 4px 4px 4px;
    border: 1px solid white;
    /* height: 25px; */
    color: white;
    cursor: pointer;
}

/* begin bootstrap overrides */
.navbar {
    background-color: #013369 !important;
}

.nav-link {
    border-radius: 4px 4px 4px 4px;
    border: 1px solid white;
    margin: 4px !important;
    padding: 4px !important;
}

/* end bootstrap overrides */


.link-shrinkable > a
{
    background: #203864;
    border-radius: 4px 4px 4px 4px;
    border: 1px solid white;
    height: 35px;
    color: white;
    cursor: pointer;
}

footer 
{
    font-size: 12pt;
    text-align: center;
    display: none;
}

/* shrink fonts on smaller devices */
@media(max-width: 568px) {
    .fas-header > a {
        font-size: 1.0em;
    }
}