html {
	font-size: 16px;
}

body {
	font-family: 'Montserrat', Helvetica, Arial, sans-serif;
	font-size: 1em;
	display: flex;
  	justify-content: center;
  	align-items: center;
}

.container{
	max-width: 1200px;
  	width: 90%;
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	flex-flow: row wrap; 
}

h1,
h2,
h3 {
	color: black;
	text-transform: uppercase;
	font-weight: 700;
}
h1 {
	font-size: 1.875em;
}
h2 {
	font-size: 1.125em;
}
h3 {
	font-size: 0.75em;
}

p {
	font-size: 0.875em;
	line-height: 21px;
    padding: 0 30px;
}

/*The widths are in a percentage!*/
header {
	border-bottom: 3px solid #77a466;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: row wrap;
	width: 100%;
	text-align: center;
}

header h1 {
	margin: 0;
	padding: 38px 20px 20px 20px;
	border-bottom: 3px solid #77a466; 
	width: 100%;
}
header h1 span {
	color: #77a466;
}

header nav {
	padding: 20px 0;
	width: 100%;
}
header nav ul {
	margin: 0;
	padding: 0;
}
header nav ul li {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 0.875em;
	padding: 10px 0px;
	list-style: none;
}

header nav ul li a{
	text-decoration: none;
	color:#77a466;
}

/*The widths are in a percentage!*/
.top-section,
.bottom-section {
	display: flex;
  	justify-content: center;
  	align-items: center;
	flex-flow: row wrap;
}

.main-image img {
	width: 100%;
	border-bottom: 3px solid #77a466;
}

.main-title h2 {
	text-align: left;
	padding: 5px 0;
	color: #77a466;
}
.main-title p {
	padding: 0;
	font-size: 1em;
	line-height: 1.5625;
}

.section-one,
.section-two,
.section-three {
	border-top: 1px solid #eee;
	width: 100%;
}


.menu {
	list-style: none;
	padding: 0;
}
.menu li {
	padding: 10px 0;
	color:#77a466;
}

.reviews {
	color: #333;
	font-size: 1em;
	line-height: 1.3125;
}

.address {
	font-size: 1em;
	line-height: 1.3125;
}

/*The widths are in a percentage!*/
footer {
	border-top: 3px solid #eee;
	text-align: center;
	width: 100%;
	display: flex;
  	justify-content: center;
  	align-items: center;
	flex-flow: row wrap;
}
footer span {
	font-family: 'Galada', cursive;
	text-transform: lowercase;
	color: #77a466;
	font-size: 0.875em;
}

@media only screen and (min-width: 768px) {
	/* Tablet styles here */

.bottom-section {
	justify-content: space-between;
	align-items: flex-start;
	border-top: 1px solid #eee;
}

.section-one,
.section-two,
.section-three {
	flex-basis: 30%;
	border-top: none;
	}

.section-two {
	border-left: 1px solid #eee;
	border-right: 1px solid #eee;
	padding: 0 20px;
}
 
@media all and (min-width:1200px) {
    /* Desktop styles here */
	header	{
		justify-content: space-between;
	}
	header h1 {
		justify-content: flex-start;
		width: 30%;
    	padding: 0;
    	border-bottom: none;
    	text-align: left;
	}

	header nav {
		width: 40%;
	}
	header nav ul {
		display: flex;
		justify-content: space-between;
	}
}
}
