@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@600&display=swap");
* {
  box-sizing: border-box;
  padding:0;
  margin:0;
}

header {
  position: relative;
}

.stripes {
  display: grid;
  grid: repeat(4, 1fr)/repeat(6, 1fr);
  -webkit-transform: skewY(-10deg);
          transform: skewY(-10deg);
  -webkit-transform-origin: 0;
          transform-origin: 0;
  position: absolute;
  top: 0;
  z-index: -1;
  height: 650px;
  width: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#2684ff), to(#0065ff));
  background: linear-gradient(to top, #2684ff, #0065ff);
}
.stripes > * {
  opacity: 0.75;
  mix-blend-mode: soft-light;
}
.stripes > *:nth-of-type(odd) {
  background: -webkit-gradient(linear, right top, left top, color-stop(35%, transparent), to(#b3d4ff));
  background: linear-gradient(270deg, transparent 35%, #b3d4ff 100%);
}
.stripes > *:nth-of-type(even) {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, transparent), to(#b3d4ff));
  background: linear-gradient(90deg, transparent 35%, #b3d4ff 100%);
}
.stripes > *:nth-child(1) {
  grid-column: 1 / span 4;
  grid-row: 1;
}
.stripes > *:nth-child(2) {
  grid-column: 2 / span 5;
  grid-row: 2;
}
.stripes > *:nth-child(3) {
  grid-column: 2 / span 5;
  grid-row: 3;
}
.stripes > *:nth-child(4) {
  grid-column: 1 / span 2;
  grid-row: 4;
}
.stripes > *:nth-child(5) {
  grid-column: 6 / span 1;
  grid-row: 4;
}

.content {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  height: 500px;
  padding: 1rem;
}
.content h1 {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 600;
  font-size: 3rem;
  line-height: 1.45;
  text-transform: uppercase;
  text-align: center;
  color: white;
  max-width: 600px;
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.35);
}
.content h1 span {
  display: block;
  color: #ffe380;
  font-size: 2.25rem;
}