<style type="text/css">
.background {
    border-style: none;
background-color:#55bceb;
    width: 50px;
    height: 80px;
}
.numbers {
    border-style: none;
 
    background-color: #0079c1;
border-radius:70px;
    padding-top:  12px;
    margin-left: 20px;
    width: 50px;
    height: 35px;
 margin-left:20px;
    text-align: center; 
    font-family: Arial; 
    font-size: 24px;
    font-weight: bold;    /* options are normal, bold, bolder, lighter */
    color: #ffffff;     /* change color using the hexadecimal color codes for HTML */
}
.title {    /* the styles below will affect the title under the numbers, i.e., “Days”, “Hours”, etc. */
    border: none;    
    padding-left: 20px;
padding-top: 15px;
    margin: 0px 2px;
    width: 55px;
    text-align: center; 
    font-family: Arial; 
    font-size: 12px; 
    font-weight: bold;    /* options are normal, bold, bolder, lighter */
    color: #8ac75a;    /* change color using the hexadecimal color codes for HTML */
    background-color: transparent;  
}
#form {    /* the styles below will affect the outer border of the countdown timer */
    width: 100%;
    height: 40px;
    border-style: solid/* options are none, dotted, dashed, solid, double, groove, ridge, inset, outset */
    border-width: 2px;
    border-color: #999999;  /* change color using the hexadecimal color codes for HTML */ 
    background-color: #ffffff;
    padding: 0px;
    margin: 0px auto;
    position: relative;   /* leave as "relative" to keep timer centered on your page, or change to "absolute" then change the values of the "top" and "left" properties to position the timer */
    top: 0px;             /* change to position the timer */
    left: 0px;            /* change to position the timer; delete this property and it's value to keep timer centered on page */
}
.line {
    border-style: solid;
border-width:2px;
border-color:#55bceb;
    width: 62px; 
    height: 1px;
    z-index: 0;
}
</style>