* {
  font-family: 'Dancing Script', cursive;
  background-color: #F4E8AD;
  font-size: 26px;
}

/* Navbar
---------------------*/
.header-img {
  padding: 10px;
  background-color: #00652f;
}

.nav-bar {
  top: 0;
}

.nav-bar ul {
  list-style: none;
  background-color: #00652f;
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

li a {
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  background-color: #00652f;
  color: #F4E8AD;
}

li a:hover {
  background-color: #BC4B51;
}

/* Main
--------------------------------------*/
main {
  width: 500px;
  text-align: center;
  margin: 120px auto 20px auto;
  display: grid;
}

h1 {
  font-size: 2em;
}

.la_pizza {
  width: 500px;
  padding-bottom: 10px;
  text-align: center;
  box-shadow: 0px 3px #BC4B51;
}

.video {
  box-shadow: 5px 5px .BC4B51;
  width: 545px;
  height: 300px;
}

.prices {
  border: 3px solid #F4D05A;
  padding: 20px;
  margin-top: 30px;
  width: 500px;
  box-shadow: 5px 5px #A58A00;
  display: flex;
  justify-content: center;
}

/* Contact us 
--------------------------------------*/
.contact_us {
  margin-top: 30px;
  padding: 20px;
  border: 3px solid #00652f;
  box-shadow: 5px 5px #00652f;
  display: block;
}

.submit {
  color: #F4E8AD;
  background-color: #BC4B51;
  border-radius: 5px;
}

/* Responsive 
--------------------------------------*/
@media (max-width: 600px) {
  * {
    font-size: 16px;
  }

  main {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  h1 {
    font-size: 22px;
  }

  .prices, .video, .contact_us {
    width: 80vw;
  }
}
