*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins',sans-serif;
font-weight: 400;
}

.hero{
    width: 100%;
    height: 100vh;
    background: linear-gradient(45deg,#08001f,#30197d);
    color: #fff;
    position: relative;
}

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

.clock{
    background: rgba(235, 0, 255, 0.11);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    backdrop-filter: blur(30px);
}

.container::before{
    content: '';
    height: 180px;
    width: 180px;
    background:#f41b75;
    position: absolute;
    top:-50px;
    left: -50px;
    border-radius: 9px;
    z-index: -1;
}
.container::after{
    content: '';
    height: 150px;
    width: 150px;
    background:#419aff;
    position: absolute;
    right:-50px;
    bottom: -50px;
    border-radius: 50%;
    z-index: -1;
    
}

.clock span{
    font-size: 70px;
    width: 110px;
    text-align:center;
    position: relative;

}

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

#hour::after{
    content: "HOURS";
    }

    
#minut::after{
    content: "MINUT";
  }

  
#second::after{
    content: "SECOND";
 }