* {
    margin: 0;
    padding: 0;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f115d4;
}


.datetime {
    color: #fff;
    background: #f115d4;
    font-family: "Segoe UI", sans-serif;
    width: 500px;
    padding: 15px 10px;
    border: 5px solid #ffffff;
    border-radius: 5px;
    -webkit-box-reflect: below 1px linear-gradient(transparent, rgba(255, 255, 255, 0.1));
    transition: 0.5s;
    transition-property: background, box-shdow;
}



.datetime:hover {
    background: #bb078e;
    box-shadow: 0 0 30px #bb078e;
}


.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;
}
