:root {
  font-family: 'DMT', sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100vh;
  background-color: black;
}

.text-line {
  font-size: 100px;
  line-height:0%;
}

.text-container p:nth-child(1) {font-variation-settings: "wght" 900; color: #12a3e7;
  animation: weightChange1 3s infinite alternate;}
.text-container p:nth-child(2) {font-variation-settings: "wght" 900; color: #25b046;
  animation: weightChange1 3s infinite alternate; animation-delay: 0.5s}
.text-container p:nth-child(3) {font-variation-settings: "wght" 900; color: #fdbe2d;
  animation: weightChange1 3s infinite alternate; animation-delay: 1s}
.text-container p:nth-child(4) {font-variation-settings: "wght" 900; color: #ff8000;
  animation: weightChange1 3s infinite alternate; animation-delay: 1.5s}
.text-container p:nth-child(5) {font-variation-settings: "wght" 900; color: #e62011;
  animation: weightChange1 3s infinite alternate; animation-delay: 2s}

@keyframes weightChange1 {
  from {
    transform: transform: rotate(0deg); scale: 0.1; font-variation-settings: "wght" 700;}
  to { 
    transform: transform: rotate(0deg); scale: 10; font-variation-settings: "wght" 300;}
  }