body {
	font-family: 'Roboto', sans-serif !important;
	background-color: rgb(243, 243, 243);
}

.hero {
	padding-top: 20vh;
    height: 70vh;
	min-height: 500px;
	background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url(./hero.jpeg);
	box-sizing: border-box;
    background-size: cover;
    background-position: center;
	-webkit-box-shadow: 0px 3px 15px -7px #000000; 
	box-shadow: 0px 3px 15px -7px #000000;
}

.hero h1 {
	font-size: 4em;
	font-weight: bold;
	color: white;
	text-align: center;
}

.hero h2 {
	font-size: 1.5em;
	font-weight: bold;
	color: rgb(219, 219, 219);
	text-align: center;
	margin-top: 20px;
}


.save-the-date {
	text-align: center;
	width: 300px;
	font-size: 22pt;
	padding: 40px 20px 20px 20px;
	border: 1px solid rgb(255, 113, 113);
	color: rgb(255, 113, 113);
	font-weight: bold;
	background-color: rgba(0, 0, 0, .3);
	border-radius: 10px;
	margin: 50px auto;
	display: block;
	position: relative
}

.save-the-date::before {
	content: "save the date";
	position: absolute;
	top: 20px;
	left: 0;
	font-size: 10pt;
	text-align: center;
	width: 100%;
}

.hero .register {
	font-size: 30px;
	text-decoration: none;
	padding: 10px;
	width: 200px;
	text-align: center;

}

main article {
	font-size: 12pt;
	max-width: 500px;
	padding: 30px;
	margin: 0 auto;
	line-height: 1.5em;
}

main article p {
	margin-top: 40px;
	margin-bottom: 5px;
}

.highlight {
	color:rgb(255, 113, 113);
}

main article p:first-child {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size:24px;
	margin-top: 20px; 
	margin-bottom: 20px;
	font-weight: normal;
	color: #222;
	line-height: 1.2em;
}


main article p:last-child {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size:14px;
	margin-top: 0px; margin-bottom: 0px;
	font-weight: normal;
	font-style: italic;
	color: #222;
}


main footer {
	margin-top: 40px;
	height: auto;
	-webkit-box-shadow: 0px 0px 15px -7px #000000; 
	box-shadow: 0px 0px 15px -7px #000000;
	background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url(./form.jpg);
	box-sizing: border-box;
    background-size: cover;
    background-position: center;
}

.form {
	margin: 40px auto;
	margin-top: 80px;
}

.btn {
	position: relative;
  
	display: block;
	margin: 30px auto;
	padding: 0;
  
	overflow: hidden;
  
	border-width: 0;
	outline: none;
	border-radius: 10px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, .6);
	
	background-color: #36ca76;
	color: #ecf0f1;
	
	transition: background-color .3s;
  }
  
  .btn:hover, .btn:focus {
	background-color: #27ae60;
  }
  
  .btn > * {
	position: relative;
  }
  
  .btn span {
	display: block;
	padding: 12px 24px;
  }
  
  .btn:before {
	content: "";
	
	position: absolute;
	top: 50%;
	left: 50%;
	
	display: block;
	width: 0;
	padding-top: 0;
	  
	border-radius: 100%;
	
	background-color: rgba(236, 240, 241, .3);
	
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
  }
  
  .btn:active:before {
	width: 120%;
	padding-top: 120%;
	
	transition: width .2s ease-out, padding-top .2s ease-out;
  }



/** RESET **/
/* 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;
}
/** RESET **/