body {
  margin: 0;
  font-family: Roboto, sans-serif;
}
body header {
  width: 100%;
}
body header .flex {
  display: flex;
  position: fixed;
  background-color: white;
  margin-top: 0;
  padding-top: 2%;
  height: 110px;
}
body header .flex .logo {
  width: 30%;
  padding-left: 4%;
  padding-top: 2%;
  margin-right: 10%;
}
body header nav {
  width: 80%;
  margin-left: 7%;
  padding-top: 4%;
}
body header nav a {
  text-decoration: none;
  color: black;
  margin-left: 1%;
  padding: 2%;
  font-size: 1.3em;
}
body header nav a:hover {
  background-color: rgb(218, 84, 85);
  color: white;
  border-radius: 2px;
}
body header nav .icons {
  float: right;
  width: 10%;
}
body header nav .icons img {
  width: 30%;
  padding: 0;
  margin: 0;
}
body header #headerpic {
  padding-top: 20%;
  background-image: url(../Assets/foodtruck.jpeg);
  min-height: 500px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
body header #headerpic h1 {
  color: white;
  font-weight: 600;
  background-color: rgba(219, 214, 212, 0.569);
  font-size: 4em;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  width: 40%;
}
body header #headerpic img {
  width: 5%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
body section, body #information {
  background-color: rgb(243, 196, 180);
  height: 600px;
  margin-top: 0;
  padding-top: 2%;
}
body section h2, body #information h2 {
  margin-top: 15%;
  color: white;
  width: 30%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 2.4em;
}
body section p, body #information p {
  width: 75%;
  padding-top: 2%;
  margin: 0 auto;
  text-align: center;
}
body section button, body #information button {
  background-color: rgb(218, 84, 85);
  color: white;
  font-size: 1.3em;
  padding: 5px;
  border: none;
  width: 30%;
  display: block;
  margin-top: 5%;
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
}
body section button a, body #information button a {
  text-decoration: none;
  color: white;
}
body section button:hover, body #information button:hover {
  border: 1px solid rgb(243, 196, 180);
}
body section button a:hover, body #information button a:hover {
  color: rgb(243, 196, 180);
}
@media screen and (max-width: 800px) {
  body header .flex {
    height: 250px;
    display: block;
  }
  body header .flex .logo {
    width: 21%;
    padding: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  body header .flex nav {
    width: 60%;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
  }
  body header .flex .icons {
    float: none;
    padding-top: 2%;
    margin-left: auto;
    margin-right: auto;
  }
  body header .flex .icons img {
    width: 30%;
  }
  body header #headerpic {
    height: 600px;
  }
  body header #headerpic h1 {
    margin-top: 25%;
    font-size: 1.9em;
  }
  body #information {
    padding-top: 20%;
  }
  body #information h2 {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  body header .flex nav {
    width: 80%;
    padding-top: 4%;
  }
  body header .flex .icons {
    margin-top: 2%;
    width: 21%;
  }
  body header #headerpic h1 {
    margin-top: 50%;
    width: 80%;
  }
  body #information h2 {
    padding-top: 25%;
  }
  body #information button {
    width: 70%;
  }
}
body footer {
  display: flex;
  flex-direction: column;
  padding-top: 2vh;
}
body footer .footerTop {
  display: flex;
  flex-direction: row;
  vertical-align: middle;
  align-items: center;
  margin-left: 20vw;
}
body footer .footerTop .iconen {
  display: flex;
  flex-direction: row;
}
body footer .footerTop .iconen a {
  text-decoration: none;
  color: black;
}
body footer .footerTop .iconen a img {
  width: 30px;
  padding-left: 2vw;
}
body footer .footerTop #book-us {
  text-decoration: none;
  color: black;
  margin-left: 20vw;
}
body footer .footerBottom {
  display: flex;
  flex-direction: row;
  margin-left: 20vw;
}
body footer .footerBottom a {
  text-decoration: none;
  color: black;
}
@media screen and (max-width: 800px) {
  body footer .footerTop {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
  }
  body footer .footerTop .iconen a {
    text-decoration: none;
    color: black;
  }
  body footer .footerTop .iconen a img {
    width: 30px;
  }
  body footer #book-us {
    margin-left: auto;
    margin-right: auto;
  }
  body footer .footerBottom {
    display: flex;
    flex-direction: column;
    word-break: normal;
  }
  body footer .footerBottom p {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
  }
  body footer .footerBottom p a {
    text-decoration: none;
    color: black;
  }
}/*# sourceMappingURL=style.css.map */