body, html {
	margin: 0;
	padding: 0;
	font-family: 'Cagliostro', sans-serif;
	text-align: center;
	background: whiteSmoke;
	background-size: 100%;
	background-attachment: fixed;
	height: 100%;
}
#menuBar {
	width: 100%;
	background-color: red;
	font-size: 1.5em;
	position: fixed;
	top: 0;
	z-index: 1;
	margin: 0;
	padding: 1em 0 1em 0;
}
.menuItem {
	width: 20%;
	text-align: center;
	float: left;
}
a {
	text-decoration: none;
	color: white;
}
#menuBar a:hover {
	color: orange;
}
#logo {
	width: 8vw;
	position: fixed;
	top: 0;
	margin-left: -4vw;
	z-index: 2;
}
#dropdownMenu {
	display: inline-block;
}
#dropdownMenu:hover .dropdownItems {
	display: block;
}
.dropdownItems a {
	display: block;
}
.dropdownItems {
	padding-top: 1em;
	display: none;
	position: absolute;
	background: red;
	width: 20vw;	
	padding-bottom: 1em;
}
#front {
	height: auto;
	width: 100%;
	font-family: 'Quicksand', sans-serif;
	font-weight: bold;
	padding-top: 15vh;
	padding-bottom: 15vh;
	color: red;
	word-break: break-word;
}
#heading {
	font-size: 5em;
	padding-bottom: 0;
	margin-bottom: 0;
}
#subheading1, #subheading2 {
	font-size: 3em;
}
#subheading1 {
	font-family: 'Shadows Into Light', cursive;
}
#subheading2 {
	font-family: 'Mina', sans-serif;
	padding-left: 1em;
	padding-right: 1em;
}
.row {
	width: 100%;
}
#row1 {
	height: auto;
	background: red;
	color: white;
	text-align: left;
	padding-top: 1em;
	padding-bottom: 1em;
}
#row1 p {
    padding-left: 15vw;
    padding-right: 1vw;
}
#row1 iframe {
    float: right;
    padding-right: 15vw;
    padding-left: 1vw;
    height: 18em;
	width: 35vw;
	padding-top: 2em;
	padding-bottom: 2em;
}
.col {
	float: left;
	text-align: left;
}
#directions {
	width: 35vw;
	margin-right: 20vw;
}
#row2 {
	height: 34vw;
}
#gallery {
    margin: 2vw 20% 2vw 20%;
	width: 60%;
	background: rgb(50, 50, 50);
	border-radius: 50%;
	height: 30vw;
	z-index: -2;
}
#gallery img {
	width: 100%;
	height: 30vw;
	border-radius: 50%;
	transition: opacity 0.5s;
	z-index: -1;
}
#row3 {
	text-align: left;
	background: red;
	padding: 0;
	margin: 0;
}
#row3 p {
	padding: 2vw 5vw 2vw 5vw;
	font-size: 1.5em;
	color: white;
}
#announcements p {
    padding: 2vw 5vw 2vw 5vw;
    font-size: 1.5em;
}
#copyright {
	position: fixed;
	bottom: 1vh;
	right: 1vw;
	color: gray;
	padding: 0;
	margin: 0;
}
#copyright a {
	color: blue;
}

/* The alert message box */
.alert {
  padding: 20px;
  background-color: rgb(100, 100, 100);
  color: white;
  font-size: 2em;
  width: 70%;
  margin-left: 15%;
  margin-right: 15%;
  opacity: 1;
  transition: opacity 0.6s; /* 600ms to fade out */
}

/* The close button */
.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  line-height: 20px;
  transition: color 0.3s;
  font-size: 2.5em;
}

/* When moving the mouse over the close button */
.closebtn:hover {
  color: black;
  cursor: pointer;
}