@font-face {
  font-family: 'CaraqueVF_Trial_WghtMelt';
  src: url('fonts/CaraqueVF_Trial_WghtMelt.woff2') format('woff2');
}

body {
  display: grid;
  justify-items: center;
  align-items: center;

  transform: translateY(7vw)
}

h1, 
.center {
  grid-column: 1/-1;
  grid-row: 1/-1;
}

h1 {
  font-family: 'CaraqueVF_Trial_WghtMelt';
  font-size: 32rem;
  color: red;
  font-weight: 1000;
  text-align: center;
  letter-spacing: -1.5rem;
  line-height: 0.1%;

  animation: vars 2s infinite linear;
  z-index: 0; /* vorne */
}

@keyframes vars {
  0%,
  100% {
    font-variation-settings: 'wght' 400, 'MELT' 1;
  }
  50% {
    font-variation-settings: 'wght' 1000, 'MELT' 100;
  }
}

.text {
  font-size: 24px;
}

.center {
}

section {
  z-index: -1; /* hinten */
  width: 350px;
  height: 350px;
  background-color: red;
  /* display: flex;  betrifft nur zeugs im quadrat, also wurst */
  transform: rotate(45deg) translateY(2rem) scale(1.4); /* hier kannst du fein-justieren */
  border-radius: 25px;
}