
:root {
  --bg: rgb(236, 236, 236);
  --shadow: rgb(202, 202, 202);
  --font:rgb(162, 162, 162);
}


html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  
}
body{
  box-sizing: border-box;
}
body div{
  box-sizing: border-box;
}



.flex{
  display:flex
}
.items-center{
  align-items:center;
}


.justify-center{
  justify-content: center;
}
.justify-evenly{
  justify-content: space-evenly;
}

.color-font{
  color:var(--font);
}

.body-content-wrapper{
  width: 80%;
  max-width: 1080px;
  padding: 12px 22px;
  min-height: 100vh;
}

.header {
background: var(--bg);
height: 70px;
}
.footer {
background: var(--bg);
height: 700px;
}
.header-inner {
  width: 80%;
  max-width: 1080px;
  height: 70px;
}

.slider{
  width: 100%;
  height: 400px;
  border-radius: 18px;
  background: var(--bg);
}
.circle-thingy-container,.shop-item-container{
  margin: 50px 0px;
  flex-wrap: wrap;
}
.circle-thingy{
  flex-shrink:0;
  margin:10px;
  width: 140px;
  height: 140px;
  background: var(--bg);
  border-radius: 100%;
}
.shop-item{
  flex-shrink:0;
  margin:10px;
  width: 240px;
  height: 340px;
  background: var(--bg);
  border-radius: 8px;
  cursor:pointer;
  box-shadow: 0 0 5px rgba(23, 24, 24, 0.05), 0 1px 2px  var(--shadow);
  transition: all .2s ease-in-out;
}
.shop-item:hover{
  box-shadow: 0 0 5px rgba(23, 24, 24, 0.05), 0 1px 22px var(--shadow);
}