@font-face {
  font-family: Alieron;
  src: url(../fonts/Aileron-Light.otf);
  font-weight: 300;
}
@font-face {
  font-family: Alieron;
  src: url(../fonts/Aileron-Regular.otf);
  font-weight: 400;
}
@font-face {
  font-family: Alieron;
  src: url(../fonts/Aileron-SemiBold.otf);
  font-weight: 600;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Alieron, Helvetica, sans-serif;
  background-color: #faf5ea;
}
header {
  padding: 20px 10px;
  background-color: #faf5ea;
}
nav {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.logo {
  text-align: center;
}
.logo img {
  max-width: 240px;
  width: 100%;
}
.back-btn {
  text-align: center;
  padding: 10px 15px;
}
.btn {
  color: #000;
  text-decoration: none;
}
.banner {
  background: url(../images/banner.avif) no-repeat center;
  background-size: cover;
  padding: 100px 20px;
  text-align: center;
  position: relative;
}
.banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.banner h2 {
  color: #fff;
  font-size: 58px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}
.ordering {
  max-width: 1280px;
  width: 100%;
  margin: 20px auto;
  padding: 0 10px 40px 10px;
}

@media (max-width: 768px) {
  .logo img {
    max-width: 120px;
  }
  .banner h2 {
    font-size: 36px;
  }
  .banner {
    padding: 40px 20px;
  }
}

.item-title {
  margin: 20px 0;
}
