#current-date {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  color: #14ffe9;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #14ffe9, #ffeb3b, #ff00e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: animate 1.5s linear infinite;
}

.clock-wrapper {
  height: 100px;
  width: 360px;
  position: relative;
  background: linear-gradient(135deg, #14ffe9, #ffeb3b, #ff00e0);
  border-radius: 10px;
  cursor: default;
  animation: animate 1.5s linear infinite;
  margin: 20px auto;
}

.clock-wrapper .clock-display,
.clock-wrapper span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.clock-wrapper .clock-display {
  z-index: 999;
  height: 85px;
  width: 345px;
  background: #1b1b1b;
  border-radius: 6px;
  text-align: center;
}

.clock-display #clock-time {
  line-height: 85px;
  color: #fff;
  font-size: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #14ffe9, #ffeb3b, #ff00e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: animate 1.5s linear infinite;
}

@keyframes animate {
  100% {
    filter: hue-rotate(360deg);
  }
}

.clock-wrapper span {
  height: 100%;
  width: 100%;
  border-radius: 10px;
  background: inherit;
}

.clock-wrapper span:first-child {
  filter: blur(7px);
}

.clock-wrapper span:last-child {
  filter: blur(20px);
}

@media (max-width: 400px) {
  .clock-wrapper {
    width: 90%;
  }
  .clock-wrapper .clock-display {
    width: calc(100% - 15px);
  }
  .clock-display #clock-time {
    font-size: 40px;
  }
}
