* {
  font-family: Ubuntu, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  display: flex;
  color: white;
}

#header-one {
  width: 69%;
  background-color: #fff159;
  padding: 15px;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.img-header {
  width: 60px;
  height: 60px;
  border-radius: 30px;
}

#header-two {
  width: 31%;
  background-color: #036b52;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#header-two p{
  margin: 10px;
  color: yellow
}


main {
  background-color:whitesmoke;
}

.container {
  display: flex;
  justify-content: space-around;
  width: 100%;
}

.items {
  display: flex;
  flex-basis: 70%;
  flex-wrap: wrap;
  justify-content: center;
  background-color:#036b52;
}

.item {
  border: 4px solid greenyellow;
  border-radius: 5px;
  background-color: white;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: auto;
  margin: 5px;
  width: 200px;
}

.item .item__sku {
  display: none;
}

.item .item__title {
  flex-grow: 1;
  padding: 10px;
  text-align: center;
}

.item .item__image {
  width: 100%;
}

.item .item__add {
  background-color: #fff159;
  border: 0;
  cursor: pointer;
  margin: 0;
  padding: 10px;
  opacity: 0.5;
}

.item__add:hover {
  opacity: 1;
}

.cart {
  display: flex;
  flex-basis: 31.4%;
  flex-flow: column wrap;
  background-color: #fff159;
  padding: 10px;
  height: auto
}

.cart__title {
  flex-basis: 1;
  font-size: 16pt;
  text-align: justify;
}

.item_price {
  margin: 2px;
  text-align: center;
}

.cart__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid black;
  border-radius: 10px;
  margin: 10px;
  padding: 10px;
  background-color: white;
  cursor: pointer;
}

.details-cart {
  margin: 2px;
}

.paragraph {
  margin: 5px;
  text-align: justify;
}

.empty-cart {
  align-self: center;
  height: 50px;
  width: 55%;
  padding: 10px;
  border: 1px solid black;
  color: white;
  font-size: medium;
  border-radius: 10px;
  background-color: #3a0ca3;
  cursor: pointer;
  opacity: 0.7;
}

.empty-cart:hover {
  opacity: 1;
}

select {
  background: transparent;
  width: 268px;
  padding: 5px;
  font-size: 16px;
  line-height: 1;
  border: 0;
  border-radius: 0;
  height: 34px;
  background: white; 
}

footer {
  text-align: center;
  background-color:  rgb(50, 167, 145);
  color: white;
  height: 50px;
  padding: 10px;
  position: fixed;
  bottom: 0;
  width: 100%;
}