* {
  margin: 0;
}

.section {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
}

.box {
  width: 80%;
  height: 80%;
  justify-content: center;
  align-items: center;
  /*   background-color: hsla(0, 0.00%, 76.67%, 1.00); */
  background-image: url(https://fastly.picsum.photos/id/238/1200/800.jpg?hmac=8lp9I5pMMLdpcomln5lXu_D5RonSO26gOARY2cPIdKo);
  background-position: 50%;
  background-size: cover;
  box-shadow: 6px 12px 20px 0px #5e547f;
}

.overlay {
  width: 100%;
  height: 100%;
  /*   background-color: hsla(105, 83.67%, 21.41%, 1.00); */
  background-image: url(https://fastly.picsum.photos/id/249/1200/800.jpg?hmac=Bdi84DsV4Aw7rXcFRBthP6AW0IUNYSbVom1bIUZbv1w);
  background-position: 50%;
  background-size: cover;
  clip-path: polygon(
    0% 100%,
    0% 100%,
    14.2857% 100%,
    14.2857% 100%,
    28.5714% 100%,
    28.5714% 100%,
    42.8571% 100%,
    42.8571% 100%,
    57.1429% 100%,
    57.1429% 100%,
    71.4286% 100%,
    71.4286% 100%,
    85.7143% 100%,
    85.7143% 100%,
    100% 100%,
    100% 100%
  );
}

/* x values 
0%
14.2857%
28.5714%
42.8571%
57.1429%
71.4286%
85.7143%
100%
*/

/* background gradient from https://codepen.io/taylorvowell/pen/AMeqLY?editors=1100 */

body {
  background: #282537;
  background-image: -webkit-radial-gradient(
    top,
    circle cover,
    #3c3b52 0%,
    #252233 80%
  );
  background-image: -moz-radial-gradient(
    top,
    circle cover,
    #3c3b52 0%,
    #252233 80%
  );
  background-image: -o-radial-gradient(
    top,
    circle cover,
    #3c3b52 0%,
    #252233 80%
  );
  background-image: radial-gradient(top, circle cover, #3c3b52 0%, #252233 80%);
}
