*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.hero{
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(45deg,orange,red);
    color: #fff;
    position: relative;


}
.container{
    position: absolute;
    width: 800px;
    height: 180px;
    /* background-color: blue; */
    top: 30%;
    left: 50%;
    transform: translate(-50%,50%);
}
.clock{
    width: 100%;
    height: 100%;
    background:linear-gradient(45deg,rgb(43, 75, 114) ,green);
    border-radius: 100px 50px 100px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(40px); 
}
.container::before{
    content: " ";
    width: 180px;
    height: 180px;
    background: linear-gradient(50deg,rgb(175, 11, 208),rgb(13, 18, 110));
    border-radius: 10px 110px 70px;
    position: absolute;
    left: -50px;
    top: -50px;
    z-index: -1;
}
.container::after{
    content: " ";
    width: 180px;
    height: 180px;
    background: linear-gradient(50deg,rgb(175, 11, 208),rgb(13, 18, 110));
    border-radius: 70px 110px 10px;
    position: absolute;
    right: -50px;
    bottom: -50px;
    z-index: -1;
}
.clock span{
    content: '';
    font-size: 80px;
    width: 110px;
    display: inline-block;
    text-align: center;
    position: relative;

}

#hrs::after{
    content: 'HOURS';
    font-size: 16PX;
    position: absolute;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);

}
#min::after{
    content: 'MINS';
    font-size: 16PX;
    position: absolute;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);

}
#sec::after{
    content: 'SEC';
    font-size: 16PX;
    position: absolute;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);

}