body {
  overflow: auto;
  margin: 0;
  padding: 0;
  font-family: Raleway;
}
.flex {
  display: flex;
  flex-flow: row wrap;
}
.justify {
  justify-content: space-between;
}
.items-center {
  align-items: center;
}
.flex-all-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.Profile img,
.Cart img,
.WishList img {
  height: 20px;
  width: 20px;
}
header {
  position: sticky;
  top: 0;
  background-color: #161a23eb;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}
.left,.right{
  flex-flow: row wrap;
}
.left img {
  width: 70px;
  height: 60px;
}
nav {
  padding: 1vh 10vh 1vw 4vw;
  flex-flow: row wrap;
}
nav ul li {
  list-style: none;
  padding: 1vh 1vw;
  color: #fbfbfe;
  font-family: Raleway;
  font-size: 16px;
  font-weight: bold;
}
.search input {
  height: 6vh;
  width: 25vw;
  background-color: rgba(21, 21, 21, 0.951);
  border-radius: 19px;
  padding: 0 10px;
  margin: 10px 0;
  border: 0;
  color: white;
  font-family: Raleway;
}
.mx-2 {
  margin-left: 16px;
  margin-right: 16px;
  color: #fbfbfe;
  font-size: 12px;
}
.wrapper {
  height: 20vh;
  /*This part is important for centering*/
  display: grid;
  place-items: center;
}
.typing-demo {
  width: 38vw;
  animation: typing 2s steps(22), blink 0.5s step-end infinite alternate;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid;
  font-family: Raleway;
  font-size: 4vw;
  color: yellow;
}
@keyframes typing {
  from {
    width: 0;
  }
}
@keyframes blink {
  20% {
    border-color: transparent;
  }
}
.Profile,
.WishList,
.Cart {
  flex-direction: column;
}
footer {
  flex-flow: row wrap;
  position: static;
  bottom: 0;
  left: 0;
  right: 0;
  top: auto;
  height: auto;
  width: 100%;
  background-color: black;
  color: white;
  font-size: 17px;
  padding: 0 0 0 0;
  margin: 0 0 0 0;
}
.About-us,
.Community,
.Account,
.Customer {
  display: flex;
  height: 75%;
  width: 20%;
  font-size: 18px;
  margin: 20px 20px;
  justify-content: center;
  align-items: baseline;
}
.banner img {
  height: 50%;
  width: 90%;
  border-radius: 20px;
}
.main {
  flex-direction: column;
}
.container {
  flex-flow: column wrap;
  background-color: #daeaf2;
  border-radius: 20px;
  margin-bottom: 20px;
  height: auto;
  width: 90%;
}
.empty {
  padding: 25px 0 0 0;
}
.product {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
}
.cover {
  height: 18em;
  width: 16em;
  padding: 0 0;
}
.item {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px,
    rgba(0, 0, 0, 0.22) 0px 15px 12px;
  margin: 20px 40px;
  text-align: center;
  background-color: #eeeeee;
}
.promotion {
  display: flex;
  width: 100%;
  background-color: yellow;
  margin-top: 20px;
}
.news {
  flex-direction: column;
}
.news h1 {
  color: #fa9802;
  font-weight: bolder;
}
.news h3 {
  color: #daeaf2;
}
.search1 {
  flex-flow: row wrap;
}
.button{
  background-color: yellow;
  border-radius: 19px;
  color: black;
  padding: 10px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 15px;
  cursor: pointer;
}
