@media screen and (max-width: 1400px) { <!-- always put this at the top -->
  img {
      width: 100% !important;
 } 
}
html {
	font-size: 1vw; <!-- 1/100 of the device screen it is shown on -->
}
body {
	color: #36454F;
  	font-family: "Raleway", sans-serif;
  	font-style: normal;	
  	font-size: 1rem;
  	background-color: #6082B6;
  	background-attachment: fixed;
}
#wrapper {
	width: 85%; <!-- a good number for most sites -->
	height: auto;
	margin-left: auto;
	margin-right: auto;
}
#hero {
	width: 100%;
	height: auto;
	margin-bottom: 2%;
	position: relative; <!-- this is for the hero text -->
}
#hero img { <!-- largest and most detailed photo possible -->
	width: 100%;
	height: auto;
}
.herotext {
	position: absolute;
	margin: 0;
	top: 45%;
	left: 10%;
    width: 80%;
}
.herotext2 {
	position: absolute;
	margin: 0;
	top: 83%;
	left: 30%;
    width: 40%;
}
h1 {
	font-family: "Gravitas One", serif;
  	font-weight: 400;
  	font-style: normal;
  	font-size: 3.5rem;
  	color: #E5E4E2;
  	text-align: center;
  	text-shadow: 7px 7px #28282B;
}
h2 {
	font-family: "Gravitas One", serif;
  	font-weight: 400;
  	font-style: normal;
  	font-size: 2rem;
  	color: #E5E4E2;
  	text-align: center;
  	text-shadow: 4px 4px #28282B;
}
#leftcolumn {
	width: 29%;
	height: auto;
	background-color:#E5E4E2;
	float: left;
	padding: 2%;
}
#rightcolumn {
	width: 60%;
	height: auto;
	background-color: #E5E4E2;
	float: right;
	padding: 2%;
	margin-bottom: 2%;
}
h3 { 
	font-family: "Gravitas One", serif;
  	font-weight: 400;
  	font-style: normal;
  	font-size: 1.5rem;
  	color: #6082B6;
}
img {
	max-width: 100%;
	height: auto;
}
p {
	line-height: 130%;
}
.center {
	display: block;
	margin: auto;
}
.left {
	float: left;
	margin-right: 2%;
	margin-bottom: 2%;
}
.right {
	float: right;
	margin-left: 2%;
	margin-bottom: 2%;
}
.leftalign {
	text-align: left;
}
a:link {
	color: #6082B6;
}
a:visited {
	color: #6082B6;
}
a:hover {
	text-decoration: none;
	color: #36454F;
}
#footer {
	width: 96%;
	height: auto;
	background-color: #E5E4E2;
	padding: 2%;
	text-align: center;
	clear: both;
}
.videocontainer {
  overflow: hidden;
  padding-top: 56.25%;
  position: relative;
}
.videocontainer iframe {
   border: 0;
   height: 100%;
   left: 0;
   position: absolute;
   top: 0;
   width: 100%;
}