@import url('https://fonts.googleapis.com/css2?family=Reenie+Beanie&family=Comfortaa:wght@300&family=Oswald:wght@300&display=swap');

:root {
  --menu-height: 55px;
}


html, body {
  background-color: beige;
  width: 100vw;
  height: 100%;
  margin: 0;
  padding: 0;
  color: black;
  overflow-x: hidden;
  overflow-y: scroll;
}

body {
  transition: background-color 5s linear;
}

* {
  box-sizing: border-box;
  font-family: 'open sans', Helvetica, sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    width: 100%;
}    

a {
  color: black;
  text-decoration: none;
}

.wrapper {
  margin: auto;
  height: 100%;
  max-width: 1000px;
  width: 100%;
}

.wrapper-home {
  max-width: 500px;
  display: flex;
  flex-direction: column;
}

#logo, .menu-list {
  margin: 0 18%;
  width: 64%;
}

.menu-list {
  display: inline-block;
  list-style-type: none;
  margin-top: 2em;
  margin-bottom: 4em;
  padding: 0;
  flex: 1;
}

.menu-item > a {
  display: flex;
  align-items: center;
  margin-top: 0.6em;
}

.menu-item img {
  margin: 0.4em;
  width: 2em;
}

.menu-item span {
  font-family: "Oswald";
  font-size: 1.5em;
  padding-left: 1em;
}

footer {
  background-color: #967b45;
  color: black;
  padding: 1em;
  line-height: 1.3em;
}

footer address {
  font-style: normal;
}

footer #company-name {
  font-size: 1.2em;
  font-weight: 600;
  font-family: Oswald;
}

#menu {
  background-color: yellowgreen;
  border-bottom: 4px dashed darkgreen;
  display: block;
  margin: 0;
  height: var(--menu-height);
  padding: 0;
}

#menu > ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  height: 100%;
  margin: 0;
  padding: 0 10px;
  justify-content: space-between;
  align-items: center;
}

#menu > ul > li {
  padding: 0 0.6em;
}

#menu > ul > li:first-child {
  width: 2.5em;
}

#menu > ul > li > a,
#content .title {
  font-family: "Comfortaa";
}

#content {
  display: block;
  height: calc(100% - var(--menu-height));
  overflow: auto;
}

#content .section-itens {
  display: flex;
  flex-wrap: wrap;
}

.section {
  background-color: #ffffff;
  opacity: 0.5;
  background: repeating-linear-gradient( 45deg, #86878c, #86878c 2px, #ffffff 2px, #ffffff 10px );
  margin: 0.6em 0;
  text-align: center;
}

#content h2 {
  display: inline;
  background-color: white;
  padding: 0 1em;
}

#content .featured-item {
  align-items: stretch;
  background-color: #F4F4F4;
  border-radius: 10px;
  border: 1px solid #EEEEEE;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 1%;
  overflow: hidden;
  text-align: center;
}

#content .item {
  align-items: stretch;
  background-color: #F4F4F4;
  border-radius: 10px;
  border: 1px solid #EEEEEE;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 1%;
  overflow: hidden;
  text-align: center;
  width: 48%;
}

.item-name {
  font-family: "Reenie Beanie", Oswald;
  font-size: 1.8em;
  margin: 0.5em;
  line-height: 0.8em;
}

.item-description {
  color: darkolivegreen;
  font-family: Comfortaa;
  font-size: 0.8em;
  margin: 0.5em;
}

.item-price {
  background-color: yellowgreen;
  margin: 0;
  padding: 0.5em 0;
  font-size: 16px;
}

/*.item-image {
  display: none;
}*/