.headline-container {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 30;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.headline-container.rotate {
  transform: translate(-50%, -50%) rotate(-25deg);
}

.headline .word {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.headline .hover h1 {
  font-size: 130px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.headline .hover:hover h1 {
  transform: scale(1.5);
  color: #fff;
  -webkit-text-stroke: 2px transparent;
  text-shadow:
    0 0 10px #ffffff,
    0 0 20px #ffffff;
}

.headline .accent {
  font-size: 60px;
  font-weight: 900;
  color: #d33b34;
  margin-top: -20px;
  display: block;

}

.diag-text {
  font-size: 14px;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.5);
}