html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* CSS reset END */

body {
    background-color: rgb(250, 250, 250);
    font-family: Arial, Helvetica, sans-serif;
    margin:0;
}

header img {
    display: block;
    width: 50px;
    height: auto;
}

header{
    display: flex;
    position: relative;
    z-index:10000; /* places the main menu above all other elemets to retain shadow */
    justify-content: space-between;
    background-color: rgb(234, 234, 234);
    padding: 10px 15px;
    font-size: 45px;
    box-shadow: rgba(0, 0, 0, 0.507) 0px 5px 3px;
}

header h1 {
    font-variant-caps: all-petite-caps;
    font-size: 40px;
}

a:active, a:hover, a:visited, a:link {
    color: black;
    text-decoration: none;
}

#menu {
    display: none;
}

#menu ul {
    position: absolute;
    left:0;
    right:0;
    z-index: 9999; /* places z index just below the main menu to retain visual quality and avoid overlapping */
    font-size: 40px;
    font-weight: bolder;
    padding-left:1.2rem;
    line-height: 60px;
    background-color: rgb(234,234,234);
    box-shadow: rgba(0, 0, 0, 0.507) 0px 5px 3px;
    margin: 0;
}

footer {
    display: flex;
    justify-content: center;
    position: relative;
    bottom: 0;
    background-color: rgb(53, 53, 53);
    color: rgb(255,255,255);
    border-top: rgb(181, 59, 59) solid 3px;
    padding: 10px 0;
    font-style: italic;
}

.container {
    position: relative;
    text-align: center;
    color: white;
}

#joinheader {
    position:absolute;
    top:15%;
    left:50%;
    width: 90%;
    transform: translate(-50%, -50%);
    color: rgb(181, 59, 59);
    font-size: 70px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

#aboutheader {
    position:absolute;
    top:50%;
    left:50%;
    width: 90%;
    transform: translate(-50%, -50%);
    color: rgb(181, 59, 59);
    font-size: 50px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

#quote {
    position:absolute;
    top:30%;
    left:50%;
    width: 70%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: lighter;
    font-style: italic;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#imagebanner {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.bodyParagraph {
    display: flex;
    margin: 15px 40px;
    font-size: 20px;
    line-height: 30px;
}

h2 {
    display: flex;
    justify-content: center;
    font-size: 25px;
    font-weight: bold;
    margin: 20px 0;
    color:rgb(181, 59, 59);
}

.location {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 40px;
    font-size: 20px;
    margin-bottom: 20px;
}

iframe {
    display: flex;
    justify-content: center;
    margin:40px auto;
    border-radius: 1rem;
}

#contact {
    margin: 40px auto;
    padding: 20px;
    width: 80%;
}

#contactheader {
    text-align: center;
    font-size: 40px;
    color: rgb(181, 59, 59);
    font-weight: bolder;
    margin-bottom: 20px;
}

#address {
    display: none;
}

.required {
    color:red;
    margin-left: 5px;
}

label {
    font-size: 20px;
    font-weight: bold;
}

form .input {
    width: 100%;
    display:flex;
    border-radius: 0.2rem;
    border-style: none;
    background-color: rgb(209, 209, 209);
    margin:10px auto 25px auto;
    height:2.5rem;
    font-family: Arial, Helvetica, sans-serif;
    border-bottom: rgb(181, 59, 59) solid 3px;
}

form #comments {
    width: 100%;
    display:flex;
    border-radius: 0.2rem;
    border-style: none;
    background-color: rgb(209, 209, 209);
    margin:10px auto 25px auto;
    height:6.5rem;
    font-family: Arial, Helvetica, sans-serif;
    border-bottom: rgb(181, 59, 59) solid 3px;
    resize: none;
}

#submitbutton {
    display: flex;
    justify-content: center;
    margin:auto;
    text-align: center;
    border-radius: 0.4rem;
    border-style: none;
    background-color: rgb(170, 170, 170);
    width: 120px;
    height: 40px;
    font-weight: bolder;
    color:rgb(181, 59, 59);
    font-size: 20px;
}

#anchorfooter {
    display: flex;
    justify-content: center;
    position: relative;
    bottom: 0;
    background-color: rgb(53, 53, 53);
    color: rgb(255,255,255);
    border-top: rgb(181, 59, 59) solid 3px;
    padding: 10px 0;
    font-style: italic;
    width: 100%;
}

#thanks {
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    margin: 20px 0;
    color:rgb(181, 59, 59);
}

#socials {
    display: flex;
    position: absolute;
    width: 50px;
    height: 50px;
    bottom: 5%;
    left: 5%;
}