	.Classic {
	position: absolute;
    top: 20px;
    right: 140px;
    font-weight: bolder;
    font-size: 25px;
    direction: ltr;
    color: #F2C700;
    /*animation: shake 1s ease-in-out infinite;*/

	}
	.Classic span:nth-child(1) {
    animation-delay: 120ms;
    }
	.Classic span:nth-child(2) {
    animation-delay: 120ms;
    }
	.Classic span:nth-child(3) {
    animation-delay: 240ms;
    }
	.Classic span:nth-child(4) {
    animation-delay: 360ms;
    }
	.Classic span:nth-child(5) {
    animation-delay: 480ms;
    }
	.Classic span:nth-child(6) {
    animation-delay: 600ms;
    }
	.Classic span:nth-child(7) {
    animation-delay: 720ms;
    }
    
    .Classic span {
    -webkit-text-stroke-width: 1.25px;
    -webkit-text-stroke-color: #000;
    display: inline;
    }
@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}
