/* 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 */

img {
  box-shadow: 2px 1px 5px black;
  width: 100%;
}

#logo {
  box-shadow: none; 
  width: 100px; 
}

#headtitle {
  margin-left: 30px;
  font-family: 'Dancing Script', cursive;
  font-weight: 200;
}

header {
  z-index: 2;
  position: fixed;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 1em;
  background-color: rgb(255, 255, 255);
  box-shadow: 2px 1px 5px black;
  font-size: 30px;
  color: rgb(0, 0, 0);
  width: 100%;
  height: 4em;
}

header i {
  color: black;
}

h2 {
  text-align: center;
  font-size: 15px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  margin: 10px;
  margin-bottom: 50px;
  line-height: 1.5em;
}

h3 {
  text-align: left;
  font-size: 30px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1.5em;
  margin: 20px 0 35px 0;
}

h1 {
  text-align: center;
  font-size: 6vw;
  font-family: 'Dancing Script', cursive;
  font-weight: 200;
  line-height: 1.5em;
}

header h1 {
  font-size: 28px;
}

.paragraph {
  padding: 0 350px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 1fr 0.25fr;
}

.info {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 1fr 0.25fr 1fr;
  padding: 0 350px;
}

p {
  padding: 0 50px;
  grid-column: 1/3;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 21px;
  line-height: 35px;
}

footer p{
  padding: 0px;
}

/*.container {
    display: inline-block;
    cursor: pointer;
  }
  
  .bar1, .bar2, .bar3 {
    width: 35px;
    height: 5px;
    background-color: #ffffff;
    margin: 6px 0;
    transition: 0.4s;
  }
  
  .change .bar1 {
    transform: translate(0, 11px) rotate(-45deg);
  }
  
  .change .bar2 {opacity: 0;}
  
  .change .bar3 {
    transform: translate(0, -11px) rotate(45deg);
  }*/

section {
  margin: 40px;
  line-height: 20px;
  font-family: Arial, Helvetica, sans-serif;

}

address {
  display: none;
}

.icon {
  margin: 0px;
  color: aliceblue;
  font-size: 100%;
}

nav {
  height: 100%;
}

.main-menu {
  display: flex;
  z-index: 1;
  align-items: center;
}

a {
  color: black;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
}

.main-menu ul {
  font-size: 0.9em;
  list-style: none;
}

.main-menu li {
  padding: 0px 35px;
  text-align: center;
}

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 {
  font-family: 'Raleway', sans-serif;
  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 {
  font-family: 'Raleway', sans-serif;
	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;
}