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

body{
    font-family: 'Quicksand', sans-serif; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100vh;
    color: black;
    background-size: cover;
}

#time{
    font-size: 8rem;
}

h1{
    margin-bottom: 3rem;
}

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

text-line{
    background-color: transparent;
    color: #eeeeee;
    outline: none;
    outline-style: none;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: solid #eeeeee 30px;
    padding: 3px 10px;

}

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