*{
    margin: 0;
    padding: 0;
  }
  
  body{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(bg.jpg);
  }
  
  .datetime{
    color: #fff;
    background: #01092b;
    font-family: "Segoe UI", sans-serif;
    width: 340px;
    padding: 15px 10px;
    border: 10px solid #0e1c5a;
    border-radius: 5px;
    -webkit-box-reflect: below 1px linear-gradient(transparent, rgba(10, 235, 123, 0.534));
    transition: 1s;
    transition-property: background, box-shadow;
  }
  
  .datetime:hover{
    background: #f6faf9;
    box-shadow: 0 0 30px #557ff3;
    color: #000;
  }
  
  .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{
    background: #2E94E3;
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 10px;
    padding: 0 5px;
    border-radius: 3px;
  }