@import url('https://fonts.googleapis.com/css2?family=Sanchez&display=swap');
*{
    margin:0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: 'Sanchez', serif;
}
body{
    display: flex;
    align-items: center;
    background-color:  #060a1f;
    justify-content: center;
    min-height: 100vh;
    
}
#clock #time{
    display: flex;
}
#clock #time div{
    position: relative;
    margin: 0 5px;
    -webkit-box-reflect: below 5px linear-gradient(transparent,#0004);
}
#clock #time div span{
    position: relative;
    display: block;
    width: 100px;
    height: 80px;
    border-color:  #060a1f;
    border-style:hidden;
    border-width: 0px;
    
    background-color:#127fd6;
    color: #fff;
    background:#127fd6 ;
    font-weight: 300;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 3em;
    z-index: 10;
     
}
#clock #time div span:nth-child(2){
    height: 20px;
    line-height: 30px;
    font-size: 14px;
    letter-spacing: .1em;
    vertical-align:super;
    font-weight: 800;
    z-index: 9;
    box-shadow: none;
    padding-bottom: -3px;
    background-color: #127fd6;
    text-transform: uppercase;
  
}
#clock #time div:last-child span{
    background: #ff006a;
}
#clock #time div:last-child span:nth-child(2){
    background: #ff006a;
}
#clock #time div span:nth-child(1){
    line-height: 80px;
}