@import url("https://fonts.googleapis.com/css?family=Alata&display=swap");





dl {
	
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0;
  color: black;
  text-shadow: 0px 0px 6px #FFF, 0px 0px 6px #FFF, 0px 0px 6px rgb(255, 255, 255);
}
dl * {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}

dt {
  --size: 8vmax;
  bottom: 70%; /* ......// titre alignement//...... */
  width: var(--size) relative;
  height: var(--size);
  font-size: calc(var(--size) - 4vmin);
  opacity: 0;
  transform: translateY(100%);
  animation: dt 100s cubic-bezier(0.23, 1, 0.32, 1) infinite;
}



dt:after {
  content: "";
  position: absolute;
  top: 1vmin;
  left: 0;
  width: 60%; /* ......// longeur soulignement//...... */
  height: 100%;
  z-index: -1;
  transform-origin: 100% 100%;
  animation: dt-pseudo 100s cubic-bezier(0.19, 1, 0.22, 1) infinite;
   margin-left: 20%; /* ......// longeur soulignement//...... */
}
dt:nth-child(1), dt:nth-child(1):after {
  animation-delay: 0s;
}
dt:nth-child(1):after {
  background-color: #dcb253;
}
dt:nth-child(3), dt:nth-child(3):after {
  animation-delay: 10s;
}
dt:nth-child(3):after {
  background-color: #ffd700;
}
dt:nth-child(5), dt:nth-child(5):after {
  animation-delay: 20s;
}
dt:nth-child(5):after {
  background-color: #dcb253;
}
dt:nth-child(7), dt:nth-child(7):after {
  animation-delay: 30s;
}
dt:nth-child(7):after {
  background-color: #ffd700;
}
dt:nth-child(9), dt:nth-child(9):after {
  animation-delay: 40s;
}
dt:nth-child(9):after {
  background-color: #dcb253;
}
dt:nth-child(11), dt:nth-child(11):after {
  animation-delay: 50s;
}
dt:nth-child(11):after {
  background-color: #ffd700;
}
dt:nth-child(13), dt:nth-child(13):after {
  animation-delay: 60s;
}
dt:nth-child(13):after {
  background-color: #dcb253;
}
dt:nth-child(15), dt:nth-child(15):after {
  animation-delay: 70s;
}
dt:nth-child(15):after {
  background-color: #ffd700;
}
dt:nth-child(17), dt:nth-child(17):after {
  animation-delay: 80s;
}
dt:nth-child(17):after {
  background-color: #dcb253;
}
dt:nth-child(19), dt:nth-child(19):after {
  animation-delay: 90s;
}
dt:nth-child(19):after {
  background-color: #ffd700;
}

dd {
  font-family: Marck Script;

  --size: 2rem;
  top: 50%;
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: 130vmin;
  font-size: calc(var(--size) - 1vmin);
  line-height: 1.2;
  opacity: 0;
  transform: translateY(80%);
  animation: dd 100s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}
dd:nth-child(2) {
  animation-delay: 2s;
}
dd:nth-child(4) {
  animation-delay: 12s;
}
dd:nth-child(6) {
  animation-delay: 22s;
}
dd:nth-child(8) {
  animation-delay: 32s;
}
dd:nth-child(10) {
  animation-delay: 42s;
}
dd:nth-child(12) {
  animation-delay: 52s;
}
dd:nth-child(14) {
  animation-delay: 62s;
}
dd:nth-child(16) {
  animation-delay: 72s;
}
dd:nth-child(18) {
  animation-delay: 82s;
}
dd:nth-child(20) {
  animation-delay: 92s;
}
dd:nth-child(22) {
  animation-delay: 102s;
}

@keyframes dt {
  2.5% {
    transform: translateY(0);
    opacity: 1;
  }
  5% {
    transform: translateY(0);
    opacity: 1;
  }
  7.5% {
    transform: translateY(2%);
    opacity: 0;
  }
}
@keyframes dt-pseudo {
  2.5% {
    transform: scale(1, 0.1);
  }
  5% {
    transform: scale(1, 0.1);
  }
  7.5% {
    transform: scale(0, 0.1);
  }
}
@keyframes dd {
  5% {
    transform: translateY(0);
    opacity: 1;
  }
  10% {
    transform: translateY(2%);
    opacity: 0;
  }
}