@font-face {
  font-family: 'LetsgoDigital';
  src: url(../font/LetsgoDigital-Regular.ttf);
  /* src: url(../font/Platypi_VariableFont_wght.ttf); */
}
body {
  background: #0A2348;
}
.number-normal {
  background-color: #fff;
}
.number-diy {
  margin-top: 50px;
}
.number-diy .data ._number {
  background: url(../img/n-bg.png) center no-repeat;
  background-size: 100% 100%;
}
.number-diy .data ._number span {
  background: linear-gradient(to bottom, #FEF1CD, #F9D16B);
  -webkit-background-clip: text;
  color: transparent !important;
}

.center {
  text-align: center;
}

@font-face {
  font-family: 'Winner';
  src: url(../font/Platypi_VariableFont_wght.ttf);
  /* src: url(../font/Bangers-Regular.ttf); */
}
#winner{
  font-family: 'Winner';
  color: rgb(255, 174, 0) !important;
  /* font-size: 48px; */
  text-shadow: 2px 1px 0px rgb(232, 232, 232);
}

.hidden-text{
  display: none;
}

.animated-text {
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  -webkit-animation: animate-text 5s steps(50) forwards;
  animation: animate-text 5s steps(50) forwards;
}

@keyframes animate-text {
  0% {
      width: 0;
  }
  100% {
      width: 100%;
  }
}