*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #10101e;

}
.container{
    color: #fff;
    background-color: #10101e;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    width: 340px;
    padding: 15px 10px;
    border: 3px solid #2e94e3;
    border-radius: 5px;
    -webkit-box-reflect: below 1px linear-gradient(transparent,#ffffff);
    transition: 0.5s;
    transition-property: background-color,box-shadow;
}
.container:hover{
    background-color: #2e94e3;
    box-shadow: 0 0 30px #2e94e3;
}
.date{
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    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;
    text-align: center;
    letter-spacing: 3px;
}
.time span:last-child{
    margin-top: 16px;
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
}
@media(max-width:340px){
    .time{
        font-size: 40px;
    }
}