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

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

.rotating-svg {
  position: absolute;
  top: 40%;
  left: 40%;
  animation: rotate-background 2s ease-in-out infinite;
  z-index: -1;
}

@keyframes rotate-background {
  0% {
    transform: translate(-50%, -50%) scaleY(1.5) rotate(0deg);
    fill: #ffbf00;
  }
  10% {
    transform: translate(-50%, -50%) scale(0.5) rotate(180deg);
    fill: #FF5722; 
  }
  20% {
    transform: translate(-50%, -50%) scale(0.5) rotate(270deg);
    fill: #9C27B0; 
  }
  30% {
    transform: translate(-50%, -50%) scale(1.5) rotate(280deg);
    fill: #3F51B5;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5) rotate(360deg);
    fill: #ffbf00; 
  }
}


.rotating-circle-svg {
  position: absolute;
  scale: 0.2;
  top: 10%;
  left: 15%;
  animation: circle-background 2s ease-in-out infinite;
  z-index: -1;
}

@keyframes circle-background {
  0% {
    transform: translate(-50%, -50%) scaleY(3.5) rotate(0deg);
    fill: #ffbf00;
  }
  10% {
    transform: translate(-50%, -50%) scale(0.5) rotate(-180deg);
    fill: #FF5722;
  }
  20% {
    transform: translate(-50%, -50%) scale(2.5) rotate(-270deg);
    fill: #9C27B0;
  }
  30% {
    transform: translate(-50%, -50%) scale(1.5) rotate(-280deg);
    fill: #3F51B5;
  }
  100% {
    transform: translate(-50%, -50%) scale(3.5) rotate(-360deg);
    fill: #ffbf00;
  }
}

.flexible-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 2rem;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

h1 {
  font-size: 10rem;
  color: rgb(192, 184, 27);
  font-weight: 400;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.flex-container span {
  font-size: 10rem;
  line-height: 7.5rem;
  display: inline-block;
  animation: my-super-weight 10s infinite alternate;
}


@keyframes my-super-weight {
  from { font-size: 6rem; font-variation-settings: "wght" 400, "opsz" 6; }
  to { font-size: 6rem; font-variation-settings: "wght" 900, "opsz" 96;}
}

.o-color-1 { color: #FFC107; }
.o-color-2 { color: #FFEB00; }
.o-color-3 { color: #FFD700; }
.o-color-4 { color: #FFC107; }
.o-color-5 { color: #FFD700; }
.o-color-6 { color: #FFCA28; }
.o-color-7 { color: #FFD700; }
