/*Body styles*/

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}

h1 {
    font-size: 30px;
    padding: 10px 0px;
    margin: 15px 0px;
    font-weight: 700;
    text-transform: uppercase;
}

h2 {
    font-size: 18px;
    padding: 13px 0px;
    font-weight: 700;
}

.emp {
    color: #BE4C1E;
}

a {
    border-bottom: 2px solid cornflowerBlue;
}

a:link,
a:visited,
a:hover {
    text-decoration: none;
    color: black;
    /*    font-weight: bold;*/
}

.bold {
    font-weight: 700;
}


/*Header Styles*/

header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    /*    height: 5%; --KEEPING THIS COMMENTED BECAUSE AS LONG AS THERE IS TEXT IT EXPANDS TO THE RIGHT SIZE*/
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

header nav {
    /*    background-color: rgba(95,108,140, 0.9);   */
    text-transform: uppercase;
    height: 100%;
    line-height: 1;
}

.headerScrolled {
    background-color: black;
    transition: background-color 0.75s linear;
}

.headerNotScrolled {
    background-color: transparent;
    transition: background-color 0.5s linear;
}

#mainFigure {
    /*    width: 100%;*/
    margin: 0 auto;
    max-width: 100vw;
    max-height: 60vh;
    height: 60vh;
    overflow: hidden;
    margin-bottom: 25px;
    /*    test*/
    background-image: url("../images/flatirons.jpg");
    background-attachment: fixed;
    background-position: top center;
    background-repeat: no-repeat;
    /*    background-size: cover;*/
}

nav ul {
    display: flex;
    flex-direction: row;
    list-style-type: none;
}

nav ul li {
    padding: 10px 10px;
    font-variant: small-caps;
    color: azure;
    font-size: 16px;
}

#logo {
    font-family: 'Oswald', sans-serif;
    align-self: center;
    /*    width: 100%;*/
    font-variant: small-caps;
    font-size: 30px;
    font-kerning: auto;
    line-height: 1;
    font-weight: 700;
    color: aliceblue;
    letter-spacing: .03em;
    text-transform: uppercase;
    padding: 10px;
    /*    background-color: rgba(95,108,140, 0.9);      */
}

#mainFigureCaption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    /*    transform:  translateY(-50%);*/
    font-family: 'Oswald', sans-serif;
    font-variant: small-caps;
    font-size: 30px;
    font-kerning: auto;
    line-height: 1;
    font-weight: 700;
    color: aliceblue;
    letter-spacing: .03em;
    text-transform: uppercase;
    background-color: rgba(100, 149, 237, 0.9);
    padding: 10px;
}


/*Main Content Styles*/

section#mainContent {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

#memberList {
    /*        list-style-type: circle;*/
    /*    display: inline-block;     word-wrap: break-word;*/
    line-height: 1.3;
}

#memberList li {
    display: inline;
}

#memberList li:before {
    content: '\00a0\2022\00a0\00a0';
}

#memberList li:first-child:before {
    content: '';
}

article {
    max-width: 700px;
    display: inline-block;
    width: 100%;
}

aside {
    max-width: 150px;
    display: inline-block;
    width: 15%;
}


/*
#donateButton {
    width: 100%;
    height: 50px;
    border: 2px solid cornflowerblue;
    display: flex;
    align-items: center;
    justify-content: center;
}
span#donateText {
    font-family: 'Oswald', sans-serif;
font-variant: small-caps;
font-size: 30px;
line-height: 1;
 font-weight: 700;
 color: cornflowerblue;
letter-spacing: .03em;
text-transform: uppercase;
}

*/

footer {
    height: 150px;
    background-color: cornflowerblue;
    margin-top: 250px;
}
