*{
  margin: 0;
  padding: 0;  
}

body{
    height: 100vh;
    display: flex;
    justify-content:center;
    align-items: center;
    background: #10101E;
}

.heading{
    color: #fff;
    border:3px solid#ff02ddd6;
    font-family: "Segoe UI", sans-serif;
    width: auto;
    align-items: center;
    border-radius: 5px;
    background: #10101E;
    padding: 15px 10px;
    margin:auto;
    display: flex;
}

.heading:hover{
    background: #ff02ddd7 ;
    box-shadow: 0 0 30px #ff02ddd7 ;


}

.datetime{
    color: #fff;
    background: #10101E;
    font-family: "Segoe UI", sans-serif;
    width: 340px;
    padding: 15px 10px;
    border: solid#ff02ddd7;
    border-radius: 5px;
    margin: auto;
    -webkit-box-reflect: below 1px linear-gradient(transparent , rgba(255, 255, 255, 0.1));
    transition: 0.5s;
    transition-property: background, box-shadow;
}

.datetime:hover{
    background: #ff02ddd7 ;
    box-shadow: 0 0 30px #ff02ddd7 ;

}

.date{
    font-size:25px ;
    font-weight: 600;
    text-align: center;
    letter-spacing: 3px;
}

.time{
    font-size: 65px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.time span:not(:last-child){
    position:relative;
    margin: 0 6px;
    font-weight:600 ;
    text-align: center;
    letter-spacing: 3px;
}

.time span:last-child{
    background:#ff02ddd6 ;
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 10px;
    padding: 0 5px;
    border-radius: 3px ;
}
