*{
    margin:0;
    padding:0;

}
body{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
     background: #10101e;
}
.datetime{
    color: #fff;
    background:#10101e;
    font-family: serif;
    width: 350px;
    padding: 15px 50px ;
    border: 3px solid rgb(255, 0, 234);
    border-radius: 5px;
    /* -webkit-box-reflect:below 1px liniear-gradient(transparent,rgb(0, 255, 17)) ; */
    /* -webkit-box-direction: reverse 2px liniear-gradient(transparent,rgb(128, 0, 255)); */
    /* -webkit-animation: alternate-reverse blue ; */
    transition: 0.9s ;
    /* transition-property: background,boxshadow; */
    transition-property: background,box-shadow;
    -webkit-box-reflect: below 1px linear-gradient(transparent,rgba(255,255,255,0.1));

}
.datetime:hover{
    background: rgb(255, 0, 234);
    box-shadow: 0 0 30px rgb(255, 0, 234);
}
.date{
    text-align: center;
    font-size: 20px;
    font-weight: 200;
    letter-spacing: 3px;

}
.time{
    
    font-size: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.time span:not(:last-child){
    position: relative;
    margin: 0 6px;
    font-weight: 600;
    letter-spacing: 3px;
}
.time span:last-child{
    background-color: rgba(255, 0, 212, 0.709);
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top:10px ;
    padding: 0 5px;
    border-radius: 3px;

}