*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
.hero{
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(26deg, #08001f, #30197d);
    color: #fff;
    position: relative;
}
.container{
    width:240px;
    height:100px;
    position: absolute;
    top: 6%;
    left: 85%;
    transform: translate(-50%, -50%);
}
.clock{
    width: 100%;
    height: 100%;
    background: rgba(235, 0, 255, 0.00001);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.clock span{
    font-size: 15px;
    width: 45px;
    display: inline-block;
    text-align: center;
    position: relative;
}
.clock span::after{
    
    font-size: 9px;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}
#hrs::after{
    content: 'HOURS';
}
#min::after{
    content: 'MINS';
}
#sec::after{
    content: 'SEC';
}