:root {
  font-size: 100%;
  font-family: 'Bodoni Moda';
}

body {
  background-color: black;
  margin: 0;
  overflow: hidden;
}


.container-svg1 {
  z-index: -2;
  transform-origin: top left;
  position: fixed;
  margin-left: 80px;
  margin-top: 200px;
}

.container-svg2 {
  z-index: -1;
  transform-origin: top left;
  position: fixed;
  margin-left: 380px;
  margin-top: 250px;
}

.container-svg3 {
  z-index: 0;
  transform-origin: top left;
  position: fixed;
  margin-left: 350px;
  margin-top: 280px;
}

.rotating-svg3 {
  animation: rotate-background2 2s ease-in-out infinite;
  z-index: -2;
  filter: drop-shadow(0 0 30px rgba(247, 0, 255, 1));
}

.rotating-svg2 {
  animation: rotate-background 2s ease-in-out infinite;
  z-index: -2;
  filter: drop-shadow(0 0 30px rgba(247, 0, 255, 1));
}

.rotating-circle-svg {
  animation: rotate-background1 2s ease-in-out infinite;
  z-index: -1;
  filter: drop-shadow(0 0 30px rgba(247, 0, 255, 1)); 
}

@keyframes rotate-background {
  0% {
    transform: translate(-50%, -50%) scale(0.1) rotate(0deg);
    fill: #ffbf00;
  }
  50% {
    transform: translate(-50%, -50%) scale(0.3) rotate(-360deg);
    fill: #ffbf00;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.1) rotate(0deg);
    fill: #ffbf00;
  }
}

@keyframes rotate-background1 {
  0% {
    transform: translate(-50%, -50%) scale(0.1) rotate(0deg);
    fill: #f700ff;
  }
  10% {
    transform: translate(-50%, -50%) scale(0.3) rotate(360deg);
    fill: #ee0b71;
  }
  30% {
    transform: translate(-50%, -50%) scale(0.25) rotate(0deg);
    fill: #de0a23;
  }
  90% {
    transform: translate(-50%, -50%) scale(0.25) rotate(0deg);
    fill: #da04fb;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.1) rotate(0deg);
    fill: #d800ca;
  }
}

@keyframes rotate-background2 {
  0% {
    transform: scale(0.4) rotate(0deg);
    fill: #e90927;
  }
  50% {
    transform: scale(0.6) rotate(360deg);
    fill: #f86700;
  }
  100% {
    transform: scale(0.4) rotate(0deg);
    fill: #ee16ce;
  }
}

.flexible-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  z-index: 1;
}

h1 {
  position: fixed;
  margin-left: 350px;
  margin-top: 25rem;
  font-variation-settings: 'wght' 400, 'opsz' 96;
  font-size: 6rem;
  color: rgb(192, 184, 27);
  font-weight: 400;
  text-align: center;
  z-index: 1;
  animation: txt 2s ease-in-out 1s infinite;
}

@keyframes txt {
  0% {
    transform: translate(-50%, -50%) scale(0.4) rotate(0deg);
    font-variation-settings: 'wght' 400, 'opsz' 96; 
  }
  50% {
    transform: translate(-50%, -50%) scale(0.4) rotate(0deg);
    font-variation-settings: 'wght' 900, 'opsz' 96; 
  }
  100% {
    transform: translate(-50%, -50%)scale(0.4) rotate(0deg);
    font-variation-settings: 'wght' 400, 'opsz' 96; 
  }
}
