* {
    margin: 0; padding: 0; border: 0;
    box-sizing: border-box;
}

body {
    background-color: rgb(3, 35, 68);
    color: #EEE;
    font-size: verdana;
    padding: 50px;
}

h1 {
    background-image: repeating-linear-gradient(-25deg,
    rgb(6, 77, 8) 0px,
    rgb(17, 75, 3) 5px,
    rgb(4, 54, 1) 7px,
    rgb(66, 19, 2) 30px);
    text-align: center;
    margin: 15px;
    padding: 10px;
    font-size: 30px;
    font-weight: bold;
    color: rgb(204, 198, 191);
    text-shadow: 5px 5px 5px rgb(159, 153, 153);
    text-transform: uppercase;
    letter-spacing: 10px;
}

#promotion_items, #section2, #section3 {
    border: 10px solid lime;
    min-height: 30svh; 
    margin: 25px;
    position: relative;
}

.sale_item {
    width: 150px;
    height: 150px;
    margin: 10px;
    display:inline-block;
}


.men {
  background-color: #06d42f9a;
  transform: skewx(20deg);
}

.women {
  background-color: #c992119a;
  transform: skewx(-15deg);
  position: absolute;
  top: 10px; right: 10px;
  width: 100px; height: 100px;

}

.kids {
  background-color: #f104049a;
  transform: rotate(-45deg);
}


#section2 {
    display: flex;
    flex-flow: row wrap;
}
#section2 div {
    width: 150px; height: 150px;
    margin: 10px;
    background-color: rgb(30, 103, 142);
    display: inline-block;
    transform: rotate(25deg);
    flex-grow: 0;
    flex-basis: 300px;
}


#section3 {
  border: 8px solid rgb(41, 129, 202);
  margin:  50px auto;
  width: 80%;
  height: 500px;
  position: relative;
}

#redbox {
    background-color:rgba(220, 0, 0, .5);
    width: 150px; height: 150px;
    border: 2px solid rgb(63, 209, 102);
    position: absolute;
    bottom: 150px; right: 150px;
    border-radius: 50%;
    z-index: 2;
}

#orangebox {
    background-color: orange;
    width: 250px; height: 250px;
    border: 2px solid rgb(7, 16, 121);
    position: absolute;
    bottom: -45px; right: -45px;
    border-radius: 50%;
    background-image: url(../images/mountian.jpg); 
    background-size: cover;
    background-position: center;
}

#bluebox {
    background-image: repeating-linear-gradient(90deg,
    rgb(36, 6, 77) 0px,
    rgb(17, 75, 3) 30px,
    rgb(4, 54, 1) 33px,
    rgb(66, 19, 2) 50px);
    width: 250px; height: 250px;
    border: 2px solid rgb(52, 57, 97);
    position: absolute;
   top: -45px; left: -45px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

#greenbox {
    background-image: repeating-linear-gradient(25deg,
    rgb(162, 126, 7) 10px,
    rgb(17, 75, 3) 20px,
    rgb(194, 163, 7) 25px,
    rgb(66, 19, 2) 30px);
    width: 350px; height: 350px;
    border: 2px solid rgb(14, 4, 130);
    position: absolute;
    top: 190px; left: 190px;
    border-radius: 350%;
    background-size: cover;
    background-position: center;
}