* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Bangers", cursive;
}

html,
body {
  display: grid;
  height: 100%;
  place-items: center;
  background-color: #000000;
}

.wrapper {
  height: 100px;
  width: 360px;
  cursor: default;
  background: linear-gradient(135deg, #14ffef, #ffeb3b, #ff00e0);
  animation: animate 1.5s linear infinite;
}

.wrapper .display,
.wrapper span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.wrapper .display {
  height: 85px;
  width: 345px;
  text-align: center;
  z-index: 99;
  background-color: #1b1b1b;
}

.wrapper .display #time {
  line-height: 85px;
  font-size: 55px;
  font-weight: 600;
  letter-spacing: 3px;
  background: linear-gradient(135deg, #14ffef, #ffeb3b, #ff00e0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: animate 1.5s linear infinite;
}

@keyframes animate {
  100% {
    filter: hue-rotate(360deg);
  }
}

.wrapper span {
  height: 100%;
  width: 100%;
  background: inherit;
}
.wrapper span:first-child {
  filter: blur(10px);
}
.wrapper span:last-child {
  filter: blur(20px);
}

@media (max-width: 600px) {
  .wrapper {
    height: 20vw;
    width: 70vw;
  }
  .wrapper .display {
    height: 17vw;
    width: 67vw;
  }
  .wrapper .display #time {
    line-height: 17vw;
    font-size: 10vw;
  }
}
