@import url(https://fonts.googleapis.com/css?family=Montserrat);

*{
  margin: 0;
  padding: 0;
  font-family:'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
}
html,body{
  display: grid;
  justify-items: center;
  align-items: center;
  justify-content: center;
  align-content: space-around;
  height: 100%;
  place-items: center;
}
.text22{
  margin-bottom: 30px;
  text-align: center;
}

.tndf{
  padding-top: 20px;
  text-align: center;
}
.tndf a{
  color: #6835ff;
  text-decoration: none;
  font-weight: 700;
}

.text22 h2{
  font-weight: 800;
  font-family:'Montserrat', sans-serif;
}

.text22 h4{
  font-weight: 600;
  font-family:'Montserrat', sans-serif;
}
.text22 p{
  font-weight: 400;
  font-family:'Montserrat', sans-serif;
}

.t2{
  background: linear-gradient(#ff9a35, white,#178a0c)!important;
  font-family:'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
}
.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;
}
.wrapper .display,
.wrapper span{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.wrapper .display{
  z-index: 999;
  height: 85px;
  width: 345px;
  background: #1b1b1b;
  border-radius: 6px;
  text-align: center;
}
.display #time{
  line-height: 85px;
  color: #fff;
  font-size: 50px;
  font-weight: 600;
  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;
}
@keyframes animate {
  100%{
    filter: hue-rotate(360deg);
  }
}
.wrapper span{
  height: 100%;
  width: 100%;
  border-radius: 10px;
  background: inherit;
}
.wrapper span:first-child{
  filter: blur(7px);
}
.wrapper span:last-child{
  filter: blur(20px);
}