body {
  font-family: Gordita, Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
    "Helvetica Neue", sans-serif;
  margin: 0;
  padding: 0;
}

h3 {
  margin: 0;
}

a {
  margin-right: 1rem;
  color: inherit;
  text-decoration: none;
}

main {
  text-align: center;
  padding: 1em;
  margin: 0 auto;
}

h1 {
  color: #335d92;
  font-size: 4rem;
  font-weight: 100;
  line-height: 1.1;
  margin: 4rem auto;
  max-width: 14rem;
}

p {
  max-width: 14rem;
  margin: 2rem auto;
  line-height: 1.35;
}

.home-main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-name {
  max-width: 100%;
  width: 600px;
}

.logo-image {
  max-width: 100%;
  width: 600px;
}

.info {
  margin: 20px 0;
  text-align: center;
}

.red {
  color: #d33f4b;
}

.menu-link {
  display: block;
  color: #d33f4b;
  margin: 0;
  padding: 1rem;
  font-weight: 600;
  font-size: 2rem;
  text-decoration: none;
}

.menu-container {
  max-width: min(95vw, 800px);
  margin: 0 auto;
}

.menu-logo-link {
  display: inline-block;
  margin: 20px 0;
}

.menu-logo {
  height: 120px;
  max-height: 20vh;
  display: block;
  margin: 0 auto;
}

.category {
  cursor: default;
  margin-bottom: 40px;
}

.category-description {
  text-align: start;
  margin-left: 10px;
  margin-top: 5px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.title {
  color: #d33f4b;
  font-size: 3rem;
  margin-bottom: 10px;
}

.category-title {
  color: #d33f4b;
  margin-left: 10px;
  font-size: 3rem;
  margin-bottom: 10px;
}

.item {
  display: flex;
  flex-direction: column;
  margin: 20px 0;
  padding: 5px 10px;
  border-radius: 5px;
}

.item-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.dotted {
  border: none;
  border-top: 3px dotted black;
  height: 3px;
  flex-grow: 1;
  margin: 3px 30px 0;
}

.option-dotted {
  border: none;
  border-top: 2px dotted black;
  height: 2px;
  flex-grow: 1;
  margin: 12px 30px 0 15px;
}

.item-name {
  text-align: start;
  font-size: 2rem;
}

.item-price {
  font-size: 2rem;
  text-align: end;
  flex-shrink: 0;
}

.option-price {
  text-align: end;
  flex-shrink: 0;
}

.options {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.option {
  display: flex;
  text-align: start;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;
  margin: 5px -5px;
  padding: 5px;
  font-size: 1.2rem;
}

.item-description {
  text-align: start;
  max-width: 90%;
  margin-top: 5px;
  line-height: 1.4;
}

/* ==========================================================================
   Media Queries for Responsive Design
   ========================================================================== */

@media (width > 480px) {
  h1 {
    max-width: none;
  }

  p {
    max-width: none;
  }
}

@media (width <= 480px) {
  .dotted,
  .option-dotted {
    display: none;
  }

  /* Add some space since dotted line is gone */
  .item-name,
  .option-name {
    padding-right: 15px;
  }
}
