@import url(https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;1,300&display=swap);
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 62.5%;
}
body {
  background-color: #f7f2e9;
  border-bottom: 1.6rem solid #edc84b;
  color: #252525;
  font-family: Roboto Mono, sans-serif;
  font-weight: 400;
  min-height: 100vh;
  padding: 3.2rem 3.2rem 6rem;
}
.container {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  margin: 0 auto;
  max-width: 80rem;
}
.header {
  align-self: stretch;
}
.header h1 {
  color: #edc84b;
  display: block;
  font-size: 5.2rem;
  font-weight: 300;
  letter-spacing: 3px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}
.header h1:after,
.header h1:before {
  background-color: #edc84b;
  content: "";
  display: block;
  height: 3px;
  position: absolute;
  top: calc(50% - 1px);
  width: 3rem;
}
.header h1:before {
  left: 0;
}
.header h1:after {
  right: 0;
}
.menu {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.menu h2 {
  border-bottom: 2px solid;
  border-top: 2px solid;
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 3px;
  padding: 1rem 0;
  text-transform: uppercase;
}
.menu > p {
  font-size: 1.5rem;
  line-height: 1.6;
  text-align: center;
  width: 80%;
}
.pizzas {
  grid-gap: 4.8rem;
  display: grid;
  gap: 4.8rem;
  grid-template-columns: 1fr 1fr;
  list-style: none;
}
.pizza {
  display: flex;
  gap: 3.2rem;
}
.pizza img {
  align-self: start;
  aspect-ratio: 1;
  width: 12rem;
}
.pizza div {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 0.4rem 0;
}
.pizza h3 {
  font-size: 2rem;
  font-weight: 400;
}
.pizza p {
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 300;
  margin-bottom: auto;
}
.pizza span {
  display: block;
  font-size: 1.6rem;
}
.pizza.sold-out {
  color: #888;
}
.pizza.sold-out img {
  filter: grayscale();
  opacity: 0.8;
}
.footer {
  font-size: 1.4rem;
}
.order {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.btn {
  background-color: #edc84b;
  border: none;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 1.4rem 3.2rem;
  transition: all 0.2s;
}
.btn:hover {
  background-color: #e9bb24;
}
/*# sourceMappingURL=main.css.map*/
