* {
  box-sizing: border-box;
}
:root {
  --background-color: black;
  --text-color: hsl(0, 0%, 100%);
}
body {
  margin: 0;
  position: relative;
}
code {
  position: absolute;
  bottom: 0;
  left: 0;
  color: red;
  padding: 1em;
}
a {
  color: #333;
}
.wrapper {
  display: grid;
  place-content: center;
  background-color: var(--background-color);
  min-height: 100vh;
  font-family: "Nosifer", sans-serif;
  font-style: normal;
  font-size: clamp(1.5rem, 8vw, 15rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-color);
}
@font-face {
  font-family: 'Nosifer';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nosifer/v23/ZGjXol5JTp0g5bxZaC0.ttf) format('truetype');
}
.wrapper > div {
  grid-area: 1 / 1 / -1 / -1;
}
.top {
  clip-path: polygon(0% 0%, 100% 0%, 100% 48%, 0% 58%);
}
.bottom {
  clip-path: polygon(0% 60%, 100% 50%, 100% 100%, 0% 100%);
  color: transparent;
  background: linear-gradient(177deg, oklch(0% 75% 25) 53%, oklch(50% 75% 25) 65%);
  background-clip: text;
  -webkit-background-clip: text;
  transform: translateX(-0.02em);
}