@font-face {
    font-family: Brandon-Grotesque;
    src: url(../fonts/Brandon-Grotesque-Thin.otf);
    font-weight: 100;
}

@font-face {
    font-family: Brandon-Grotesque;
    src: url(../fonts/Brandon-Grotesque-Light.otf);
    font-weight: 300;
}

@font-face {
    font-family: Brandon-Grotesque;
    src: url(../fonts/Brandon-Grotesque-Regular.otf);
    font-weight: 400;
}

@font-face {
    font-family: Brandon-Grotesque;
    src: url(../fonts/Brandon-Grotesque-Medium.otf);
    font-weight: 500;
}

@font-face {
    font-family: Brandon-Grotesque;
    src: url(../fonts/Brandon-Grotesque-Bold.otf);
    font-weight: 700;
}

@font-face {
    font-family: Brandon-Grotesque;
    src: url(../fonts/Brandon-Grotesque-Black.otf);
    font-weight: 900;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Brandon-Grotesque", Helvetica, sans-serif;
}
header {
  padding: 20px;
}
nav {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.logo {
  text-align: center;
}
/* .logo a {
        font-family: Enriqueta, Helvetica, sans-serif;
        font-size: 32px;
        font-weight: 700;
        text-decoration: none;
        color: #1d2cf3
      } */
.logo img {
  max-width: 200px;
  height: auto;
}

.back-btn {
  text-align: center;
  padding: 10px 15px;
  color: ffffff;
  margin-top: 15px;
}
.btn {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 20px;
  transition: all 0.3s ease;
  background-color: #2c2f7d;
}
.btn:hover {
  opacity: 0.6;
}

.ordering_info {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    padding: 10px;
}

.instructions {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    margin-top: 20px;
}

.instruction-url a{
    font-size: 16px;
    font-weight: 700;
    color: #2f6d41;
    margin-top: 20px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    display: inline-block;
    margin-top: 10px;
}

.allergen_info {
    margin: 10px 0;
}

.allergen_info ul {
    display: flex;
    list-style-type: none;
    padding: 0;
    gap: 15px;
}

.allergen_info li {
    display: flex;
    flex-flow: row;
    width: 150px;
    gap: 5px;
}

.allergen_image {
    max-width: 25px;
    vertical-align: bottom;
}

@media (max-width: 768px) {
    .allergen_info li span {
        font-size: 12px;
    } 
    .allergen_info {
        margin: 20px 0;
    }  
}