*{
    margin: 0;
    padding: 0;
    font-family: poppins,sans-serif;
    box-sizing: border-box;
}
.digital{
    width:100%;
    min-height: 100vh;
    background: linear-gradient(to right,rgb(131, 44, 44),rgb(141, 19, 19));
    color: #fff;
    position: relative;
}
.icon {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.icon img {
    width: 150px;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
}


.container{
    width: 800px;
    height: 200px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.clock{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(177, 89, 89);
    backdrop-filter: blur(40px);
}

.clock span{
    font-size: 80px;
    width: 110px;
    display: inline-block;
    text-align: center;
    position: relative;
}

.clock span::after{
    font-size: 15px;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

#hrs::after{
     content: 'HOURS';
}
#mins::after{
    content: 'MINS';
}
#sec::after{
    content: 'SEC';
}