body {
  margin: 0;
  padding: 0;
  background-color: #222222;
  font-family: Arial, sans-serif;
}

#content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

#triangle {
  position: absolute;
  top: 30%;
  left: 35%;
  width: 0;
  height: 0;
  border-right: 50px solid transparent;
  border-bottom: 150px solid white;
  border-left: 100px solid transparent;
  transform-origin: center center;
  animation: rotateAnimation 8s linear infinite;
}

@keyframes rotateAnimation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#top-left {
  position: absolute;
  top: 50px;
  left: 50px;
  color: white;
  font-size: 16px;
}

#bottom-right {
  position: absolute;
  right: 50px;
  bottom: 50px;
  max-width: 300px;
  color: white;
  font-size: 16px;
  line-height: 1.5;
  text-align: right;
  --rainbow-offset: 0px;
  background: repeating-linear-gradient(
    135deg,
    red 0,
    orange 56.57px,
    yellow 113.14px,
    green 169.71px,
    blue 226.28px,
    indigo 282.85px,
    violet 339.42px,
    red 395.98px
  );
  background: repeating-linear-gradient(
    135deg,
    red var(--rainbow-offset),
    orange calc(var(--rainbow-offset) + 56.57px),
    yellow calc(var(--rainbow-offset) + 113.14px),
    green calc(var(--rainbow-offset) + 169.71px),
    blue calc(var(--rainbow-offset) + 226.28px),
    indigo calc(var(--rainbow-offset) + 282.85px),
    violet calc(var(--rainbow-offset) + 339.42px),
    red calc(var(--rainbow-offset) + 395.98px)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
