@font-face {
    font-family: Maiandra;
    src: url('fonts/maiandra-gd.ttf');
}
.fancyfont {
    font-family: 'Maiandra';
}

body {
    font-family: georgia,"times new roman",times,serif;
    margin: 0;
    background-color: #fff8ff;
    color: #34283e;
    /**/
    display: flex;
    min-height: 100%;
    flex-direction: column;
}

hr {
    background-color: #4f4258;
    height: 2px;
    border: none;
}

main {
    flex: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Maiandra';
    text-align: left;
}

a {
    color: #254fc5;
    text-decoration: none;
}

a:hover {
    color: #364e94;
    text-decoration: underline;
}

p {

}

p.body-text {
    line-height: 1.625em;
    text-align: left;
    max-width: 90ch;
    font-size: 1.06em;
}

.body-text-container {
    margin: 2% auto;
    padding: 0px 50px;
    width: 90ch;
}

/* Navbar CSS*/

#navbar {
    top: 0;
    width: 100%;
    text-align: center;
    color: #FFFFFF;
    border-bottom: 4px solid #4f4258;
    background-color: #34283e;
}

#navbar ul {
    display: inline-block;
    overflow: hidden;
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-align: center;
}

#navbar li {
    float: left;
}

#navbar li a {
    display: inline-block;
    padding: 14px 16px;
    text-align: center;
    text-decoration: none;
    color: #FFFFFF;
}

#navbar li a.current-page {
    background-color: #4f4258;
}

#navbar li a:hover {
    background-color: #4f4258;
}

li.dropdown {
    display: inline-block;
}

#navbar .dropdown-content {
    position: absolute;
    display: none;
    border-top: 4px solid #4f4258;
    background-color: #34283e;
}

#navbar .dropdown-content a {
    display: block;
    padding: 12px 16px;
    text-align: left;
    text-decoration: none;
}

#navbar .dropdown:hover .dropdown-content {
    display: block;
}

/*Splash Page CSS */

#splash-page {
    display: table;
    width: 100%;
    height: 100%;
    text-align: center;
    background: url('img/header-small.jpg') no-repeat center;
    background-size: cover;
}

#splash-page #title {
    font-family: 'Maiandra';
    font-weight: normal;
    display: table-cell;
    padding: 100px;
    vertical-align: middle;
    color: #132f33;
}

#splash-page #title span {
    display: block;
}

.link-button{
    background-color: #34283e;
    border-radius: 5px;
    color: #ffffff;
    display: inline-block;
    padding: 10px;
    text-decoration: none;
}

.link-button:hover {
    background-color: #4f4258;
    color: #FFFFFF;
}

input.link-button {
    outline: none;
    border: none;
}

.link-button:disabled {
    background-color: #90839a;
    color: #cec5d6;
}

footer {
    background-color: #34283e;
    border-top: 4px solid #4f4258;
    color: #FFFFFF;
    overflow: auto;
    padding: 10px;
}

/* Footer CSS*/

footer a {
    color: #FFFFFF;
}

footer a:hover {
    color: #4f4258;
}

a.social {
    display: inline-block;
    padding: 5px;
}

a.social:hover {
    background-color: #4f4258;
}

a.social img {
    width: 30px;
}

/* CSS for team viewer*/

div#viewer-container {
    align-items: center;
    display: flex;
    text-align: center;
}

div#viewer-left-arrow,
div#viewer-right-arrow {
    display: inline-block;
    font-size: 3em;
    width: 10%;
    border: 1px solid #cbc;
}

div#viewer-left-arrow:hover,
div#viewer-right-arrow:hover {
    color: #4f4258;
}

div#viewer-left-arrow {
    float: left;
}

div#viewer-right-arrow {
    float: right;
}

div#viewer-content {
    display: inline-block;
    width: 80%;
}

div#viewer-content img {
    width: 100%;
    padding: 0 30%;
    box-sizing: border-box;
}

div#team-roster {
    background-color: #e0d5e0;
    overflow: auto;
    white-space: nowrap;
}

div.member-tile {
    display: inline-block;
    background-color: #bfadc3;
    margin: 10px;
    padding: 10px;
    border: 2px solid #bfadc3;
}

div.member-tile:hover {
    border: 2px solid #4f4258;
}

img.member-headshot {
    height: 200px;
}

/* Indicator for required field in a form*/
form .required:after {
    color: #e32;
    content: " *";
    display: inline;
}

.unfilled {
    border: #A00 solid 1px;
    background-color: #FCC;
}
