@media screen and (max-width: 800px) {
	.cell1, .cell2 {
	width: 100% !important;
} 
.o1 {order: 1;}
.o2 {order: 2;}
.o3 {order: 3;}
.o4 {order: 4;}
.o5 {order: 5;}
.o6 {order: 6;}
.o7 {order: 7;}
.o8 {order: 8;}
}
html {
	font-size: .9vw; /*vw stands for viewport window with is part of rems*/
}
#hero {
	width: 100%;
	height: auto;
	position: relative;
}
#hero img {
	width: 90%;
	height: auto;
	padding: 2% 5% 2% 5%;
}
.herotext1 {
	position: absolute;
	margin: 0;
	top: 10%;
	width: 100%;
	text-align: center;
	font-family: garamond, serif;
	color: #5c3531;
}
#navbar {
	list-style-type: none;
	background-color: #5c3531;
	overflow: hidden; /*we need this to give the floating elements height*/
	font-size: 2rem;
	margin: 0;
	padding: 0;
	text-align: center;
}
#navbar li {
	float: left;
	width: calc(100%/5);
}
#navbar li a {
	display: block;
	padding: 3% 0 3% 0;
	border: .2vw solid #8f5f5b;
}
#navbar a:link, #navbar a:visited {
	color: white;
	text-decoration: none;
}
#navbar a:hover {
	background-color: #ca97a3;
}
.active {
	background-color: #ca97a3;
}
#wrapper {
	width: 96%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}
#leftcolumn {
	width: 32%;
	height: auto;
	background-color: #5c3531;
	float: left;
	padding: 2%;
	margin-top:2%;
}
#rightcolumn {
	width: 60%;
	height: auto;
	background-color: #8f5f5b;
	float: right;
	padding: 2%;
	margin-bottom: 2%;
	margin-top: 2%;
}
#footer {
	width: 96%;
	height: auto;
	background-color: #8f5f5b;
	padding: 2%;
	text-align: center;
	clear: both;
}
#column {
	width: 90%;
	height: auto;
	background color: #5c3531;
}
body {
	background-color: #8f5f5b;
	color: #fffefe;
	font-size: 1.5rem;
	font-family: "didact-gothic", sans-serif;
}
p{
	line-height: 120%;
	font-size: 110%;
}
h1{
	font-family: verdana, serif;
	font-size: 300%;
	text-align: center;
	margin-top: 100%;
}
h2{
	font-family: Georgia, Palatino, serif;
	font-size: 200%;
	text-align: center;
	margin-top: 0%;
}
h3{
	font-family: Georgia, Palatino, serif;
	font-size: 125%;
	text-align: center;
}
h4 {
	font-family: Georgia, Palatino, serif;
	font-size: 200%;
	text-align: center;
	color: #402523;
	margin-top: 0%;
}
h5 {font-family: Georgia, Palatino, serif;
	font-size: 125%;
	text-align: left;
	color: #402523;
	margin: 2%;
}
h6 {font-family: Georgia, Palatino, serif;
	font-size: 100%;
	text-align: left;
	color: #ca97a3;
	margin: 2%;
}
ul {
	line-height: 140%;
	font-size: 110%;
}
li {
	line-height: 130%;
}
img{
	max-width: 100%;
	height: auto;
}
#flexbox {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	background-color: #8f5f5b;
	padding-top: 2%;
	padding-bottom: 2%;
	align-items: center;
}
.cell1 {
	width: 30%;
	height: auto;
}
.cell2 {
	width: 30%;
	height: auto;
	align-self: flex-start;
	text-align: justify;
}
.invisible {
	visibility: hidden;
}
a:link {
	color: #feccd4;
}
a:visited {
	color: #e7cccf;
}
a:hover {
	text-decoration: none;
	color: #fffefe;
}
input[type=text], select, textarea {
  width: 100%;
  padding: 2%;
  border: 1% solid #ca97a3;
  border-radius: 2%;
  box-sizing: border-box;
  margin-top: 2%;
  margin-bottom: 2%;
  resize: vertical;
}
input[type=submit] {
  background-color: #5c3531;
  color: white;
  padding: 2%;
  cursor: pointer;
}