 *{
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
 }

 body{
    width: 100%;
    height: 100vh;
    background: url("timerBG.jpg") ;
    background-position: center;
    background-repeat:no-repeat ;
    background-size:cover ;

    display: grid;
    grid-template-columns: 70%;
    justify-content: center;
    align-content: center;

 }
 .heading {
    color:#fff;
    font-size: 40px;
    font-weight: lighter;
    text-align: center;
    letter-spacing:6px;
    word-spacing: 6px;
    margin-bottom: 25px;

 }

 .description{
    color: #bababa;
    text-align: center;
    font-size: 15px;
    letter-spacing:1px ;
    font-family: 'Lucida Sans';
 }
 .timer{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
 }
.sub-timer{
    width: 220px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    overflow: hidden;
}
.digit{
    color: #fff;
    font-weight: 70px;
    font-size: 70px;
    text-align: center;
    padding: 2.5rem 0;

}
.digit_name{
    color: #000;
    background: #fff;
    text-align: center;
    padding: 1rem;
    font-size: 20px;
}