

html {
  font-size: 1em;
  line-height: 1.4;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  background: #000;
}


#deadline {
  width:581px;
  max-width: 100%;
  height:158px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#deadline svg {
  width: 100%;
}

#progress-time-fill {
  animation-name: progress-fill; 
  animation-timing-function: linear; 
  animation-iteration-count: infinite;
}

/* Death */
#death-group {
  animation-name: walk;
  animation-timing-function: ease; 
  animation-iteration-count: infinite;
  transform: translateX(0);
}

#death-arm {
  animation: move-arm 3s ease infinite;
  /* transform-origin: left center; */
  transform-origin: -60px 74px;
}

#death-tool {
  animation: move-tool 3s ease infinite;
  transform-origin: -48px center;
}

/* Designer */

#designer-arm-grop {
  animation: write 1.5s ease infinite;
  transform: translate(0, 0) rotate(0deg) scale(1, 1);
  transform-origin: 90% top;
}

.deadline-days {
  color: #fff;
  text-align: center;
  width: 50%;
  margin: 0 auto;
  position: relative;
  height: 20px;
  font-family: 'Oswald', sans-serif;
  border: 1px solid white;
}

.deadline-days .inner {
  width: 100px;
  position: relative;
  top: 0;
  left: 0;
  z-index: 10;
}

 .mask-red,
.mask-white {
  position: absolute;
  top: 0;
  width: 100%;
  overflow: hidden;
  height: 100%;
}

.mask-red {
  left: 0;
  width: 0;
  color: #BE002A;
  animation: text-red 20s ease infinite;
  /* z-index: 2; */
  z-index: 0;
  background: #000;
}
.mask-white {
  right: 0;
} 

@keyframes text-fill-left-to-right {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}


.animated-text {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  background: linear-gradient(to right, red 50%, white 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  background-clip: text;    
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fillText 20s linear forwards;
}

@keyframes fillText {
  from {
    background-position: 100% 0;
  }
  to {
    background-position: 0% 0;
  }
}


/* Flames */

#red-flame {
  opacity: 0;
  animation: show-flames 20s ease infinite, red-flame 120ms ease infinite;
  transform-origin: center bottom;
}

#yellow-flame {
  opacity: 0;
  animation: show-flames 20s ease infinite, yellow-flame 120ms ease infinite;
  transform-origin: center bottom;
}

#white-flame {
  opacity: 0;
  animation: show-flames 20s ease infinite, red-flame 100ms ease infinite;
  transform-origin: center bottom;
}

@keyframes progress-fill {
  0% {
      x: -100%;
  }

  100% {
      x: -3%;
  }
}

@keyframes walk {
  0% {
      transform: translateX(0);
  }
  6% {
      transform: translateX(0);
  }
  10% {
      transform: translateX(100px);
  }

  15% {
      transform: translateX(140px);
  }

  25% {
      transform: translateX(170px);
  }

  35% {
      transform: translateX(220px);
  }

  45% {
      transform: translateX(280px);
  }

  55% {
      transform: translateX(340px);
  }

  65% {
      transform: translateX(370px);
  }

  75% {
      transform: translateX(430px);
  }

  85% {
      transform: translateX(460px);
  }

  100% {
      transform: translateX(520px);
  }
}

@keyframes move-arm {
  0% {
      transform: rotate(0);
  }

  5% {
      transform: rotate(0);
  }

  9% {
      transform: rotate(40deg);
  }

  80% {
      transform: rotate(0);
  }
}

@keyframes move-tool {
  0% {
      transform: rotate(0);
  }

  5% {
      transform: rotate(0);
  }

  9% {
      transform: rotate(50deg);
  }

  80% {
      transform: rotate(0);
  }
}

/* Design animations */

@keyframes write {
  0% {
      transform: translate(0, 0) rotate(0deg) scale(1, 1);
  }

  16% {
      transform: translate(0px, 0px) rotate(5deg) scale(0.8, 1);
  }

  32% {
      transform: translate(0px, 0px) rotate(0deg) scale(1, 1);
  }

  48% {
      transform: translate(0px, 0px) rotate(6deg) scale(0.8, 1);
  }

  65% {
      transform: translate(0px, 0px) rotate(0deg) scale(1, 1);
  }

  83% {
      transform: translate(0px, 0px) rotate(4deg) scale(0.8, 1);
  }
}

@keyframes text-red {
  0% {
      width: 0%;
  }

  100% {
      width: 98%;
  }
}

/* Flames */

/* @keyframes show-flames {
  0% {
      transform:  translateY(0);
  }
  74% {
      transform:  translateY(0);
  }
  80% {
      transform:  translateY(-30px);
  }
  97% {
      transform:  translateY(-30px);
  }
  100% {
      transform: translateY(0px);
  }
} */

@keyframes show-flames {
  0% {
      opacity: 0;
  }
  74% {
      opacity: 0;
  }
  80% {
      opacity: 1;
  }
  99% {
      opacity: 1;
  }
  100% {
      opacity: 0;
  }
}

@keyframes red-flame {
  0% {
      transform: translateY(-30px) scale(1, 1);
  }

  25% {
      transform: translateY(-30px) scale(1.1, 1.1);
  }

  75% {
      transform: translateY(-30px) scale(0.8, 0.7); 
  }

  100% {
      transform: translateY(-30px) scale(1, 1); 
  }
}

@keyframes yellow-flame {
  0% {
      transform: translateY(-30px) scale(0.8, 0.7);
  }

  50% {
      transform: translateY(-30px) scale(1.1, 1.2);
  }

  100% {
      transform: translateY(-30px) scale(1, 1);
  }
}