﻿.yk_label {
  font-size: 2.2rem;
  background: url("../img/font.png");
  -webkit-background-clip: text;
  color: transparent;
  animation: moveBg 30s linear infinite;
}

.yk_sub_label {
  font-size: 1.2rem;
}

@keyframes moveBg {
  0% {
    background-position: 0% 30%;
  }
  100% {
    background-position: 1000% 500%;
  }
}

.yk_middle {
  text-align: center;
  user-select: none;
  width: 100%;
  height: auto;
  padding:15px 0px;
}

.yk_time {
  color: #d99c3b;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  margin-top:15px;
}

.yk_time span {
  padding: 0 10px;
  font-size: 0.8rem;
}

.yk_time span div {
  font-size: 1.5rem;
}

@media (max-width: 740px) {
  .yk_label {
    font-size: 1.7rem;
  }
  .yk_time span {
    padding: 0 16px;
    font-size: 0.6rem;
  }
  .yk_time span div {
    font-size: 2rem;
  }
}