@CHARSET "UTF-8";

body {
    font-family: 'Alegreya Sans', sans-serif;
    font-weight: 400;
    font-size: 1.2em;
}

/* FOOTER */
html, body, #container {
    height: 100%;
}
#container {
    height: auto;
}
#footer {
    clear: both;
    position: relative;
    z-index: 10;
    height: 3em;
    margin-top: -3em;
}
#footer p {
    text-align: center;
    font-weight: bold;
    color: #52abb7;
}
#content { 
    padding-bottom: 3em;
    min-height: 90vh;
}

a:link {
    color: black;
    text-decoration: underline;
}
a:visited {
    color: black;
    text-decoration: underline;
}
a:hover {
    color: #3c8690;
    text-decoration: underline;
}

p {
    max-width: 30em;
}
h1, h2 {
    font-weight: 700;
    display: block;
}
h3, h4 {
    display: block;
}
img {
    max-width: 100%;
}
img.small {
    max-width: 10em;
    min-width: 5em;
    width: 20vw; 
}
img.logo {
    max-width: 400px;
    width: 61%;
}

/* FLEXBOX */
.flex-container {
    display: -webkit-box;
    display: -ms-flexbox;    
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: stretch;
    align-items: stretch;
}
				
.full-width-banner {
    flex: 0 1 98%;
}
	
.flex-item {
    flex: 0 1 14em;
    margin: 0.65em;
}

.flex-big-item {
    flex: 0 1 20em;
    margin: 1em;
}

/* FORMS */
label {
    width: 0em;
    clear: both;
    text-align: right;
    padding-right: 4em;
}

input, label {
    float: left;
}

input, textarea {
    float: left;
    border-radius: 4px;
    border: 1px solid #CCC;
}

button {
    border: 1px solid #ccc;
    color: black;
    font-family: 'Alegreya Sans', sans-serif;
    font-weight: 400;
    font-size: 0.8em;
    background: #dfdcdf;
    border-radius: 4px;
    clear: both;
    display: block;
    -webkit-appearance: none;
}
button:hover {
    background: #ccc;
}

input:focus, textarea:focus {
    outline-color: #B4EAF4;
}

