* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html, body {
    height: 100vh;
    overscroll-behavior-y: contain;
}

body {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

/* Chrome IOS Whitespace hack */
#container {
    min-height: 100%;
    background-image: url(images/LGPOA_floral_BG_XL.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: transparent;
    font-family: "Roboto", Helvetica, Verdana, sans-serif;
}

img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

a {
    color: blue;
    text-decoration: underline;
}

a:hover {
    color: #000;
}

a:visited {
    color: #FFF;
}

h1 {
    font-size: 2.2rem;
    letter-spacing: .1em;
    line-height: 2rem;
    font-weight: 500;
    margin-bottom: 1.4rem;
}

nav {
    background-color: #000;
    padding: .5rem 1rem;
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
}

nav a {
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
}

nav ul {
    display: inline;
}

nav li {
    display: inline;
    padding-right: 24px;
}

header aside {
    background-color: #000;
    color: #FFF;
    padding: 12px 12px;
    text-align: center;
    line-height: 1.5rem;
}

header strong {
    font-size: 1.8rem;
}

section {
    font-size: 1.4rem;
    line-height: 1.9rem;
    font-weight: 400;
    border-bottom: 2px solid black;
    padding: 2rem 6% 2.5rem;
}

section p {
    margin-bottom: 1rem;
    max-width: 900px;
}

figure {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    padding-left: 16px;
}

figcaption {
    font-size: 1rem;
    font-style: italic;
    text-align: center;
}

footer {
    text-align: center;
    padding: 2rem 0 64px;
}

#about-text {
    flex: 2;
}

#documents a {
    color: #000;
}

#documents ul {
    padding-left: 2rem;
}

#documents li {
    line-height: 2.2rem;
}

#hoa-board ul {
    list-style-type: none;
    padding-left: .2rem;
}

#meetings {
    background-color: rgba(192, 192, 192, 0.5);
    border: 1px solid #333;
    padding: 8px 16px;
    margin: 0 0 12px 36px;
    max-width: 50%;
    font-weight: 300;
    font-style: italic;
    font-size: 1.6rem;
}

.logo {
    display: inline;
    color: #FFF;
}

.flex-container {
    display: flex;
    flex-direction: row;
}

.data-size {
    font-size: 1rem;
    font-style: italic;
}

.email-link {
    font-size: 1.8rem;
}

/***** MEDIA QUERIES *********/
@media screen and (max-width: 50rem) {
    .flex-container {
        flex-direction: column;
    }

    #meetings {
        margin: 24px 0 12px;
        max-width: 90%;
        flex: 1;
    }

    h1 {
        line-height: 2.5rem;
    }

    nav {
        font-size: .8rem;
    }

    section {
        padding: 2rem 2rem 2.5rem;
    }

    figure {
        flex: 1;
        max-width: 90%;
    }

    .logo {
        display: none;
    }
}