* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body,
.time,
.left-side,
.right-side,
.right-top,
.right-down {
    justify-content: center;
    display: flex;
    align-items: center;
}

.didital-clock,
.time,
.right-side,
.right-top,
.right-down {
    position: relative;
}

body {
    min-height: 80vh;
    background: #2e2e45;
}

.digital-clock {
    color: white;
    background: #2d2f38;
    width: 425px;
    padding: 20px 45px;
    box-shadow: 0 5px 25px rgb(14, 21, 37, 8);
    border-radius: 10px;
}

.digital-clock::before{
    content: '';
    position: absolute;
    background: linear-gradient(blue, orange, green);
    background-size: 200% 200%;
    top: -5px;
    left: -5px;
    bottom: -5px;
    z-index: -1;
    filter: blur(30px);
animation: glowing 5s ease infinite;
}

@keyframes  glowing{
    0%{
        background-position: 0% 50%;
    }
    50%{
        background-position: 100% 50%;
    }
    100%{
        background-position: 0% 50%;
    }
}


#hours {
    font-weight: 600;
    padding: 0 10px;
    line-height: 125px;
    font-size: 8em;
    background: -webkit-linear-gradient(90deg, blue, white);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.right-side {
    flex-direction: column;
}

#dots {
    font-size: 4em;
    transform: translateX(-3px);
    color: grey;
}

#minutes {
    font-weight: 500;
    font-size: 5em;
    margin-left: 10px;
    margin-bottom: 15px;
    transform: translateY(10px);
    background: -webkit-linear-gradient(90deg, orchid, white);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.right-down {
    margin-left: 10px;
    transform: translateY(-25px);
}

#peroid,
#seconds {
    font-weight: 500;
    font-size: 1.8em;
    margin-left: 10px;
    margin-top: 10px
}

#peroid {
    color: orange;
}

#seconds {
    color: white;
}