*{
    margin: 0;
    padding: 0;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    box-sizing: border-box;

}
.clock{
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(45deg,#08001f,#30197d);
    color: white;
}
.container{
    width: 800px;
    height: 180px;
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.clock1{
    width: 100%;
    height: 100%;
    background: rgba(235,0, 255, 0.11);
    display: flex;
    align-items: center;
    border-radius: 20px;
    justify-content: center;
    backdrop-filter: blur(50px);
}
.container::before{
    content: '';
    width: 180px;
    height: 180px;
    background-color:skyblue;
    border-radius: 5px;
    position: absolute;
    left: -37px;
    top: 19px;
    z-index: -1;

}
.container::after{
    content: '';
    width: 180px;
    height: 180px;
    background-color: lightpink;
    position: absolute;
    border-radius: 50%;
    right: -36px;
    bottom: 19px;
    z-index: -1;
}
.clock span{
    font-size: 80px;
    width: 120px;
    display: inline-block;
    text-align: center;
    position: relative;
}
.clock1 span::after{
    font-size: 16px;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}
#HRS::after{
    content: 'HRS';
}
#MIN::after{
    content: 'MIN';
}#SEC::after{
    content: 'SEC';
}