@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap");

.josefin-sans-<uniquifier > {
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

html {
  width: 100%;
  height: 100%;
  background-image: url("bg.jpg");
}

body {
  padding: 25px;
  padding-top: 5px;
  font-family: "Josefin Sans";
}

.menu {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: stretch; /* makes items in a row match the tallest */
}

.title {
  color: white;
  text-shadow: -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black,
    1px 1px 0 black;
  background: #faad5a;
  border-radius: 15px;
  outline: 4px solid #6b3e00;
  margin-bottom: 15px;
  padding: 15px;
  text-align: center;
}

.title > * {
  margin: 0;
}

.menu-item > * {
  display: block;
}

.menu-item {
  display: inline-block;
  vertical-align: top;
  background: #faad5a;
  max-width: fit-content;
  padding: 10px;
  border-radius: 15px;
  margin-bottom: 15px;
  outline: 4px solid #6b3e00;
  flex: 1 1 200px;
  margin-left: 25px;
  margin-right: 25px;
  margin-top: 30px;
}

.menu-image {
  border-radius: 15px;
  margin-bottom: 25px;
  margin-top: 25px;
  max-width: 225px;
  max-height: 275px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.menu-title {
  color: white;
  text-shadow: -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black,
    1px 1px 0 black;
  font-size: 25px;
}

.menu-description {
  color: black;
  text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white,
    1px 1px 0 white;
}
