<div class="grid__container">
  <figure class="one">
    <img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/3794/1.jpg" alt="">
  </figure>
  <figure class="two">
    <img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/3794/2.jpg" alt="">
  </figure>
  <figure class="three">
    <img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/3794/3.jpg" alt="">
  </figure>
  <figure class="four">
    <img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/3794/4.jpg" alt="">
  </figure>
  <figure class="five">
    <img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/3794/5.jpg" alt="">
  </figure>
  <figure class="six">
    <img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/3794/6.jpg" alt="">
  </figure>
  <figure class="seven">
    <img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/3794/7.jpg" alt="">
  </figure>
  <figure class="eight">
    <img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/3794/8.jpg" alt="">
  </figure>
  <figure class="nine">
    <img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/3794/9.jpg" alt="">
  </figure>
</div>
@import url("https://fonts.googleapis.com/css2?family=Exo:wght@600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100vw;
  height: 100vh;
  font-family: "Exo", Arial, sans-serif;
  background-color: #557;
  color: #fff;

  display: grid;
  place-content: center;
  padding: 20px;
}

figure {
  display: block;
  margin: 0;
}

img {
  width: 100%;
  height: 200%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
}

.grid__container {
  padding: 0.8rem;
  background: black;
  background-image: linear-gradient(45deg, #ff5722, #2822ff, #ff0707);
  height: 500px;
  width: 100%;
  max-width: 600px;
  border: 1px solid #c9b473;
  overflow: hidden;
  display: grid;

  grid-template-columns: 1fr 0.7fr 0.3fr 1fr;
  grid-template-rows: 20% 40% 20% 20%;
  grid-template-areas:
    "one two two three"
    "four five five five"
    "six five five five"
    "six seven eight eight";
}

.one {
  grid-area: one;
  clip-path: polygon(0% 0%, 93.24% 0%, 105.04% 110.16%, 0% 90%);
}

.two {
  grid-area: two;
  clip-path: polygon(0% 0%, 108.28% 0%, 96.45% 110.13%, 10.55% 110.93%);
}

.three {
  grid-area: three;
  clip-path: polygon(15.05% 0%, 100% 0%, 99.35% 91.7%, 3.08% 108.48%);
}

.four {
  grid-area: four;
  clip-path: polygon(
    0% -0.85%,
    106.34% 9.98%,
    121.32% 65.63%,
    99.66% 109.89%,
    1.86% 124.41%
  );
}

.five {
  grid-area: five;
  clip-path: polygon(
    44px 117px,
    25px 26px,
    213px 21px,
    381px 0px,
    379px 144px,
    380px 170px,
    379px 210px,
    368px 269px,
    202px 284px,
    211px 193px,
    159px 184px,
    17px 203px
  );
}

.six {
  grid-area: six;
  clip-path: polygon(2.14% 29.3%, 99.34% 15.42%, 98.14% 100.82%, 1.57% 101.2%);
}

.seven {
  grid-area: seven;
  clip-path: polygon(7.92% 33.47%, 96.31% 23.39%, 95.38% 100%, 5.3% 100.85%);
}

.eight {
  grid-area: eight;
  clip-path: polygon(2.5% 22.35%, 100% 0%, 100% 100%, 1.55% 100%);
}

.nine {
  grid-area: 3 / 2 / 4 / 4;
  clip-path: polygon(
    5.94% 28.66%,
    100.61% -0.67%,
    101.1% 108.57%,
    5.4% 126.28%
  );
}

.three img {
  object-position: 70% -60px;
}

.four img {
  object-position: 10% -100px;
  width: 200%;
}

.five img {
  object-position: 20% -260px;
}

.six img {
  object-position: 0px -330px;
  width: 500%;
  height: 100%;
}

.seven img {
  object-position: 10% 20%;
}

.eight img {
  object-position: 10% -320px;
}

.nine img {
  object-position: 10% 10px;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.