@font-face {
  font-family: "Ivory";
  src: url("../fonts/IvoryMonoLL-Regular.otf") format("opentype");
  font-style: normal;
}

@font-face {
  font-family: "IvoryItalic";
  src: url("../fonts/IvoryMonoLL-Italic.ttf") format("opentype");
  font-style: italic;
}

body {
  font-family: "Ivory";
  background-color: rgb(249, 245, 240);
  font-feature-settings: 'ss03' on;

}


header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
padding: 1rem;
  box-sizing: border-box;
}


header img {
  height: 4rem;
}



.menu-wrapper {
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}


.menu {
  min-width: 50vw;
  background-color: white;
  display: flex;
  flex-direction: column;
  color: #456036;
  padding: 4rem;
  box-sizing: border-box;
  font-size: 11px;
  gap: 0.5rem;
}

.supp-wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;

}



.supp {
  padding-top: 2rem;
}

.menu h2 {
  text-transform: uppercase;
  padding-top: 2rem;
}

li h2 {
  padding-top: 0 !important;
  font-family: "Ivory" !important;
  font-style: normal !important;

}

.menu li {
  display: flex;
  font-style: italic;
  font-feature-settings: 'ss03' on;

  gap: 0.25rem;
}

.menu ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}


.menu li span:last-child {
  font-family: "Ivory";
  font-style: normal;
}


.menu .supp-wrapper li span:last-child {
  font-style: italic;
  font-feature-settings: 'ss03' on;

}
.menu .line {
  flex: 1;
border-bottom: 1px dashed black;
padding-bottom: 0.5rem;
height: 100%;
}

.drinks {
  display: flex;
  flex-direction: column;
}


.col {
  display: flex;
  flex: 1;
  gap: 2rem;
}

.row {
  display: flex;
  flex: 1;
  flex-direction: column;
  display: flex
  ;
      flex-direction: column;
      gap: 0.25rem;
}



.row .line {
  padding: 0;
  height: 74%;
}


.contact {
  padding-top: 6rem;
  padding-bottom: 8rem;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 12px;
}

.contact h1 {
  text-transform: uppercase;
  padding-top: 2rem;
  color: #456036;
}

.contact h2 {
  padding-top: 2rem;
  color: #456036;

}

.contact a {
  text-decoration: none;
  color: #456036;
  border-bottom: 1px dashed   #456036;
}

footer {
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

footer img {
  height: 6rem;
}

@media (max-width: 800px) {

  .menu {
    width: auto;
    min-width: none;
    padding: 2rem;
  }

  .col {
    flex-direction: column;
  }

  .col .row:nth-child(2) h2 {
    padding-top: 0;
  }

  .col li {
    align-items: flex-end;
    justify-content: center;
  }


  .col .line {
    height: 100%;    margin-bottom: 0.1rem;
  }
}


