* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}
.container {
  width: 100%;
  background-color: rgb(210, 161, 101);
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.navList {
  display: flex;
  gap: 12px;
}

.logo {
  font-size: 30px;
  font-weight: 800;
}
.navList {
  font-weight: 600;
  font-size: 20px;
}
.search {
  font-size: 20px;
}
.heart,
.shopping {
  font-size: 20px;
}

.containerBox {
  width: 90%;
  margin: 0 auto;
}
.boxMain {
  background-color: black;
  width: 600px;
  height: 500px;
  position: relative;
  /* saga getire bilmedim */
}
.boxItem {
  width: 90px;
  height: 90px;
  background-color: purple;
  position: absolute;
}
.boxItem1 {
  left: 0px;
  top: 0px;
}
.boxItem2 {
  right: 0px;
  top: 0px;
}
.boxItem3 {
  right: 0;
  bottom: 0;
}
.boxItem4 {
  left: 0;
  bottom: 0;
}

.boxItem5 {
  left: calc(50% - 45px);
  top:  calc(50% - 45px);
  /* nece merkeze getire bilerem */
}

.container2 {
  width: 90px;
  margin: auto;
  margin-left: 50px;
}

.stickySection {
  padding: 40px 0;
  background-color: darkcyan;
  position: sticky;
  bottom: 0;
  margin-top: 300px;
}
.Stcky1 {
  background-color: darkcyan;
  z-index: 4;
}
.Stcky2 {
  z-index: 3;
  background-color: brown;
}
.Stcky3 {
  background-color: forestgreen;
  z-index: 2;
}
