body {
  font-family: Gill sans;
  background: aquamarine;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  img {
    width: 50px;
  }
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  a {
    text-decoration: none;
    font-size: 20px;
    color: black;
  }
}

.menus {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  h1 {
    font-weight: 600;
  }
}
.menu-card {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 95%;
  gap: 10px;
  background: white;
  border-radius: 20px;
  padding-left: 20px;
  img {
    width: 90%;
  }
  .menu-text {
    display: flex;
    width: 90%;
    align-items: center;
    justify-content: space-between;
    h2 {
      font-weight: 500;
    }
    button {
      border: none;
      color: white;
      font-family: Gill sans;
      width: 150px;
      height: 40px;
      font-size: 20px;
      border-radius: 10px;
      background: #DDAA27;
    }
  }
}

.orders {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  h1 {
    font-weight: 600;
  }
}

.order-card {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  background: white;
  border-radius: 15px;
  img {
    width: 50px;
  }
  h2 {
    font-weight: 600;
    line-height: 32px;
    span {
      font-weight: 500;
    }
  }
  .order-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    button {
      color: white;
      font-size: 18px;
      width: 80px;
      font-family: Gill sans;
      border: none;
      border-radius: 10px;
      background: red;
    }
    .order-count {
      display: flex;
      align-items: center;
      gap: 20px;
      button {
        width: 40px;
        background: #DDAA27;
        color: black;
      }
    }
  }
}

.admin {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  h1 {
    font-weight: 600;
  }
  input {
    width: 95%;
    height: 40px;
    border: none;
    border-radius: 10px;
    padding-left: 10px;
    font-family: "Gill sans";
    font-size: 19px;
    outline: none;
    color: #000000;
  }
  button {
    width: 90%;
    height: 40px;
    border: none;
    font-size: 19px;
    color: white;
    border-radius: 20px;
    background: #DDAA27;
    font-family: Gill sans;
  }
}
