/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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 */

nav {
  display: none;
  background-color: rgb(223, 223, 223);
  text-decoration: none;
}

img {
  box-shadow: 2px 1px 5px black;
  width: 100%;
}

#headlogo {
  width: 30px; 
  position: absolute;
}

#headtitle {
  margin-left: 40px;
}

header {
  z-index: 1;
  position: sticky;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 1em;
  background-color: rgb(116, 42, 42);
  box-shadow: 2px 1px 5px rgb(5, 5, 5);
  font-size: 30px;
  color: rgb(214, 214, 214);
  width: 100%;
  height: 3em;
}

header i {
  color: rgb(214, 214, 214);
}

h2 {
  text-align: center;
  font-size: 15px;
  font-family: 'Outfit', sans-serif;
  margin: 10px;
  margin-bottom: 50px;
  line-height: 1.5em;
}

h2 #thanks {
  text-align: center;
  font-size: 20px;
  margin: 20px;
color: black;
}

h3 {
  text-align: left;
  font-size: 30px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1.5em;
  margin: 20px 0 35px 0;
  color: rgb(116, 42, 42);
}

h1 {
  text-align: center;
  font-size: 10vw;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1.5em;
}

header h1 {
  font-size: 25px;
}

p {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 18px;
  line-height: 30px;
}

section {
  margin: 40px;
  line-height: 20px;
  font-family: Arial, Helvetica, sans-serif;

}

address {
  display: none;
}

.icon {
  margin: 0px;
  color: aliceblue;
  font-size: 100%;
}

#main-menu {
  position: fixed;
  z-index: 1;
  display: none;
  top: 5em;
  right: 0;
  height: 100%;
  padding: 20px;
  padding-left: 30px;
  box-shadow: 1px 1px 5px black;
}

a {
  color: black;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
}

#main-menu ul {
  list-style: none;
  width: 100%;
}

#main-menu li {
  font-size: 2.5em;
  line-height: 2.5em;
  padding: 5px;
  text-align: right;
}

#main-menu a {
  color: rgb(80, 80, 80);
}

footer {
  box-sizing: border-box;
  bottom: 0;
  width: 100%;
  padding: 1em;
  background-color: rgb(223, 223, 223);
  box-shadow: 2px 1px 5px black;
}

footer i{
  margin-right: 5px;
  font-size: 25px;
}

form {
  margin-top: 0;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
  box-sizing: border-box;
	padding: 25px;
}

form h1 {
	font-size: 20px;
	padding-bottom: 10px;
}

form textarea,input {
	margin-top: 10px;
	width: 97%;
	border-radius: 5px;
	border-style: solid;
	border-width: 1px;
	border-color: rgba(0, 0, 0, 0.15);
	height: 25px;
}

form textarea{
	height: 100px;
}

form input[type=submit] {
	margin-left: 25%;
	width: 50%;
}

form p {
	padding-top: 17px;
	padding-bottom: 5px;
}

form span {
	color: red;
}

input:focus { 
	outline: none !important;
	border-color: rgba(0, 0, 0, 0.15);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
textarea:focus { 
	outline: none !important;
	border-color: rgba(0, 0, 0, 0.15);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}