@media screen and (max-width: 800px) { <!-- always put this at the top -->
  img {
      width: 100% !important;
 } 
}
html {
	font-size: 1vw; <!-- 1/100 of the device screen it is shown on -->
}
#navbar {
	list-style-type: none;
	background-color: #31331f;
	overflow: hidden;
	font-size: 2rem;
	margin: 0;
	padding: 0;
	text-align: center;
}
#navbar li {
	float: left;
	width: calc(100%/5);
}
#navbar li a {
	display: block;
	padding: 4% 0 4% 0;
	border: .2vw solid #d6c9b4;
}
#navbar a:link, #navbar a:visited {
	color: white;
	text-decoration: none;
}
#navbar a:hover {
	background-color: #455763;
}
.active {
	background-color: #455763;
}
#hero {
	width: 100%;
	height: 60vh;
	overflow: hidden;
	margin-bottom: 2%;
	position: relative; /* this is for the hero text */
	margin: 0;
    padding: 0;
}
#hero img {
    width: 100%;
    height: 100%;      /* Fill the hero vertically */
    object-fit: cover; /* Crop top + bottom evenly */
    object-position: center 30%; /* Center the crop */    
    display: block;
}
.herotext {
	position: absolute;
	margin: 0;
	top: 14%;
	left: 26%;
    width: 50%;
}
h1 {
	font-family: "Notable", serif;
	font-weight: 400;
  	font-style: normal;
  	font-size: 3rem;
	text-align: center;
	color: #ffffff;
	text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}
.herotext2 {
	position: absolute;
	margin: 0;
	top: 30%;
	left: 30%;
    width: 40%;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
    color: #ffffff;
}
h2 {
	font-family: "Notable", serif;
	font-weight: 400;
  	font-style: normal;	
  	font-size: 2rem;
	text-align: center;
	color: #455763;
}
h3 {
	font-family: "Notable", serif;
	font-weight: 400;
  	font-style: normal;
	font-size: 1.75rem;
	color: #31331f;
}
body {
  	font-family: "Urbanist", sans-serif;
	font-optical-sizing: auto;
 	font-weight: 100;
	font-style: normal;	color: #24221E;
	font-size: 1.5rem;
	background-color: #d6c9b4;
	margin: 0;
	padding: 0;
	text-align: center;
}
img {
	max-width: 100%;
	height: auto;
}
#overview {
	width: 94%;
	height: auto;
	padding: 3%;
}
p {
	line-height: 135%;
}
#flexbox {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	padding-top: 2%;
	padding-bottom: 2%;
	align-items: center;
}
.cell1 {
	width: 30%;
	height: auto;
	margin-bottom: 1%; <!-- optional -->
}
.cell2 {
	width: 30%;
	height: auto;
	align-self: flex-start;
	text-align: center;
}