*{
    margin: 0;
    padding: 0;
    font-family: 'poppins', sans-serif;   
}

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

.wrapper{
    height: 120px;
    width: 360px;
    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: 1;
    background: #1b1b1b;
    height: 100px;
    width: 345px;
    text-align: center;
    border-radius: 6px;
    -webkit-box-reflect: below 3px linear-gradient(transparent, rgba(20, 255, 233, 0.3));
}

.wrapper .display #time{
    line-height: 100px;
    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;
}

.wrapper span {
    height: 100%;
    width: 100%;
    background: inherit;
    border-radius: 10px;
}

.wrapper span:first-child {
    filter: blur(10px);
}

.wrapper span:last-child {
    filter: blur(30px);
}

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