*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100vh;
    font-weight: 200;
    color: #fff;
}

#time{
    font-size: 8rem;
}

h1{
    margin-bottom: 3rem;
}

h2{
    margin-bottom: 0.5rem;
    opacity: 0.6;
}

@media(max-width: 700px){
    #time{
      font-size: 6rem;  
    }
}

@media screen and (max-width:500px){
    #time{
        font-size: 4.5rem;
    }
    h1{
       margin: 0 auto;
       font-size: 2rem;
    }
    h2{
        margin: 0 auto;
        font-size: 1.5rem;
    }
}