/**** FONTS AND TEXT ****/
body {
  width: 100%;
  margin: 0;
  text-align: center;
  font-family: "Lato", sans-serif;
  color: #363636;
}

.restaurant-title, .restaurant-heading {
  margin: 0;
  font-family: "chango", cursive;
  font-size: 46px;
  color: #940202;
  letter-spacing: 2px;
  text-shadow: 2px 2px rgba(212, 123, 6, 0.3);
}

.restaurant-heading {
  font-size: 18px;
  color: #ec0404;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.548);
}

h3 {
  text-transform: lowercase;
}

p {
  font-family: "Courier Prime", monospace;
  text-transform: lowercase;
}

a, .icon {
  text-decoration: none;
  color: #653A1E;
}
a:hover, .icon:hover {
  color: #d1702f;
}
a:visited, .icon:visited {
  color: #653A1E;
}

.icon {
  color: #940202;
}
.icon:visited {
  color: #940202;
}

/**** CONTAINERS ****/
header {
  height: 25vh;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

section {
  padding-top: 50px;
}

.content {
  z-index: 1;
}

.contact {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

footer {
  margin-top: 10px;
  background-color: #868686;
  padding: 1%;
}

/**** BUTTONS ****/
.menu-button {
  background: #fad232;
  border: none;
  display: block;
  width: 40%;
  padding: 1% 3%;
  margin: 10px auto;
  background-color: #fad232;
  border-radius: 20px;
  font-size: 20px;
  text-transform: uppercase;
}
.menu-button:hover {
  color: #d1702f;
  background: #fad232;
  background: linear-gradient(0deg, #fad232 0%, #FFDE59 100%);
}

.social-icons {
  display: flex;
  list-style: none;
  justify-content: center;
}
.social-icons li {
  margin-right: 40px;
}

/**** IMAGES ****/
.header-bg {
  opacity: 0.6;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
}

.logo {
  max-width: 150px;
}

/**** MEDIA QUERIES ****/
@media (min-width: 768px) and (max-width: 2000px) {
  header {
    height: 40vh;
  }
  .logo {
    max-width: 200px;
  }
}/*# sourceMappingURL=style.css.map */