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%;
  margin: 0 auto;
  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: 2em;
}
h2 {
  font-size: 1.125em;
}
h3 {
  font-size: 0.75em;
}

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

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

header h1 {
  margin: 0;
  padding-top: 40px;
  padding-bottom: 10px;
}
header h1 span {
  color: #77a466;
}

header nav {
  padding: 10px 0;
  border-top: 3px solid #77a466;
  width: 100%;
}
header nav ul {
  margin: 0;
  padding: 10px;
}
header nav ul li {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.875em;
  padding: 10px 10px;
  list-style: none;
}
header nav ul li a {
  text-decoration: none;
  color: #77a466;
}

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

.bottom-section {
  margin: 0 auto;
  /*display: flex;
  justify-content: center;
  align-items: flex-start;*/
}

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

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

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

.section-one h3 {
  padding: 10px 0;
}

/*
.section-two {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
}

.section-two h3,
.section-three h3 {
  padding: 10px 30px;
}
*/

.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.5;
}

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

/*****Tablet styles*****/
@media all and (min-width: 768px) {
  .bottom-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

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

  .section-two {
    border-right: 1px solid #eee;
    border-left: 1px solid #eee;
    padding: 0 20px;
  }

  header nav ul {
    display: flex;
    justify-content: center;
  }
}

/*****Desktop styles******/
@media all and (min-width: 1200px) {
  header {
    display: flex;
    flex-flow: row nowrap;
  }

  header nav {
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    border-top: none;
    flex-flow: row nowrap;
  }

  header nav ul {
    display: flex;
  }

  header h1 {
    padding-top: 0px;
    padding-bottom: 0px;
    width: 35%;
  }
}
