body {
  background-color: rgb(255, 255, 255);
  text-align: center;
  color: rgb(118, 25, 25);
  font-family: "Gabarito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

h1 {
  font-size: 70px;
  margin-bottom: 50px;
  margin-top: 0;
}

#map_section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10vw;
  height: min-content;
}

.map_section > img {
  margin-left: 5vw;
  width: 50vw;
}

#dish_box_wrapper {
  width: 50vw;
}

#dish_box {
  border: 3px solid lightgray;
  border-radius: 5px;
  height: min-content;
  padding: 20px;
  transition: all ease-in-out 200ms;
  margin-right: 10vw;
}

#dish_box.fade {
  border-color: white;
}

#dishes {
  transition: all ease-in-out 200ms;
}

#dishes.fade {
  color: white;
}

#current_meal {
  font-size: 20px;
  margin-top: 0px;
}
