:root {
  --prato-img-xy-max: 100px;
  --prato-img-xy-min: 100px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #212121;
}

body {
  font-family: Arial, sans-serif;
  background-color: #ffe2bb;
  color: #212121;
}

header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  background-color: #f9b23e;
  height: 100px;
}

header #icon-meenu {
  justify-self: start;
  height: 50px;
}

header #icon-restaurante {
  justify-self: center;
  height: 70px;
}

h1,
h2,
h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

p {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

div.menu {
  text-align: center;
  margin: 20px;
}

ul {
  display: flex;
  flex-direction: column;
}

li.list-group-item {
  list-style-type: none;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

li.list-group-item .imagem-prato {
  width: var(--prato-img-xy-max);
  height: var(--prato-img-xy-max);
  min-height: var(--prato-img-xy-max);
  min-width: var(--prato-img-xy-max);
  border: 10px solid #fcca7d;
  border-radius: 50%;
  margin-right: 0.5rem;
  background-color: whitesmoke;
}

li.list-group-item div {
  flex-grow: 1;
  min-width: 200px;
  padding: 1rem;
  background-color: whitesmoke;
  border-radius: 30px;
  text-align: left;
}

footer {
  background-color: #f9b23e;
  text-align: center;
  padding: 10px;
  position: relative;
  width: 100%;
}

footer p {
  font-weight: 700;
}

.active {
  border: 10px solid #44ff6d;
}

.categorias {
  font-weight: 200;
  font-size: 0.75rem;
}