
body{
	font-family: Helvetica, Montserrat, sans-serif;
}

body, html {
  height: 100%;
  margin: 0;
  font-family: Helvetica, Montserrat, sans-serif;
}
img[src*="logo"]{
  height: 235px;
  width: 90px;

}

.header{
	text-align: center;
	padding: 1px;
	background-color: white;
	font-size: 35px;
	font-family: Helvetica, Montserrat, sans-serif;
}

/* homepage image with text */
.hero-image {
  background-image: url("images/greenforest.jpg");
  height: 75%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 9px;
}

.hero-text {
	font-size: 30px;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
}

/* main nav */
nav {
	list-style-type: none;
	text-align: center;
	font-size: 25px;
  box-sizing: border-box;
  margin-bottom: 19px;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

li {
  display: inline;
}

/* about body */
.about{
	text-align: center;
	padding: 30px;
}

/* about img */
img{
	padding: 20px;
	width: 328px; 
	height: 328px;
}

/* contact form styles */
.text-align{
  text-align: center;
}

.contact-form input[type=text], select, textarea {
   width: 100%;
  padding: 12px;
  border: 1px solid #241C15;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

.contact-form input[type=submit] {
  background-color: #413F3D;
  color: white;
  padding: 13px 25px;
  border: none;
  border-radius: 4px;
}

.contact-form input[type=submit]:hover {
  color: #CFB53B;
  background-color: #413F3D;
}


.contact-form input[type=reset] {
  background-color: #413F3D;
  color: white;
  padding: 13px 25px;
  border: none;
  border-radius: 4px;
}

.contact-form input[type=reset]:hover {
  color: #CFB53B;
  background-color: #413F3D;
}


.contact-form {
  border-radius: 5px;
  padding: 20px;
}

.shop {
  text-align: center;
}

* {
  box-sizing: border-box;
}

/* shop grid */
.shop-column {
  float: left;
  width: 33.33%;
  padding: 5px;
  background-color: white;

}

.shop-row:after {
  clear: both;
  display: table;
}

/* coming soon (cart pg) */
.coming-soon{
  text-align: center;
}

.coming-soon h2{
  text-align: center;
  font-size: 57px;
}

footer{
  text-align: center;
  color: white;
  background-color: #413F3D;
  padding: 111px;
  width: 100%;
  height: auto;
  line-height: 200%;
  
}

a:link{
	color: #413F3D;
  padding: 7px;
  background-color: #CFB53B;
}

a:visited {
	color: white;
  background-color: #413F3D;
  padding: 7px;
}

a:hover {
	color: #CFB53B;
  background-color: #413F3D;
  padding: 11px; 
}

a:active {
	color: #241C15;
  background-color: #CFB53B;
  padding: 7px;
}

