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

body {
  background-color: rgb(246, 246, 246);
}

.container-cartTitle {
  background-color: #00D5E2;
}

.header {
  position: relative;
  background: #41197F;
  display: flex;
  align-items: center;
  width: 100%;
  height: 90px;
}

.container-title {
  width: 80%;
}

.title {
  color: rgb(221, 221, 221);
  font-size: 30px;
  padding-left: 30px;
}

.container-cartTitle {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #00D5E2;
  width: 40%;
  height: 100%;
  margin-left: 30px;
  justify-content: center;
}

.container-cartTitle span {
  z-index: 1;
}

.container-cartTitle .cart__title {
  color: white;
  font-size: 20px;
  font-weight: 700;
  color: #41197F;
}

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

.title strong {
  color: white;
}

.items {
  display: flex;
  flex-basis: 65%;
  flex-wrap: wrap;
  justify-content: center;
  margin: 40px 0;
}

.item {
  display: flex;
  flex-direction: column;
  height: auto;
  margin: 5px;
  width: 272px;
  border: 2px solid rgb(234, 234, 233);
  border-radius: 5px;
  box-sizing: border-box;
  border: 2px solid #41197F;
  border-radius: 15px;
  padding: 10px;
  box-shadow: 5px 5px 10px 0 rgba(29, 147, 216, 0.2);
}

.item:hover {
  box-shadow: 5px 5px 10px 5px rgba(44, 40, 40, 0.3);
}

.item .item_id {
  display: none;
}

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

.item .item__add {
  background-color:#00D5E2;
  border: 0;
  cursor: pointer;
  margin: 0;
  padding: 10px;
  color: #41197F;
  width: 248px;
  margin: auto;
  border-radius: 10px;

}

.item .item__add:hover {
  box-shadow: 5px 5px 10px 0 rgba(189, 52, 243, 0.2);
  width: 250px;
}

.cart {
  display: flex;
  flex-basis: 32%;
  flex-flow: column wrap;
  background-color: rgb(241, 241, 238);
  height: 100vh;
  background-color: #F3F9FB;
}

.cart .cart__items {
  height: 500px;
  overflow-y: scroll;
}

.item_price {
  font-size: 2rem;
  text-align: center;
}

.empty-cart {
  position: absolute;
  width: 170px;
  height: 35px;
  margin: 0 auto;
  border: 2px solid rgb(5, 52, 219);
  background-color: rgb(249, 249, 246);
  top: 600px;
  align-self: center;
}
