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

    color: #f0f6fc;
}

html, body {
    font-family: "Lato", sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    /* background-color: blueviolet; */
    overflow: hidden;

    background-color: #0d1117;
}

div {
    /* border: solid red; */
}

.time-figure {
    font-family: monospace;
}


#no-js {
    background-color: yellow;
    color: red;
}

h1 {
    font-weight: 600;
    font-size: 1.5rem;
    padding-bottom: 0.5rem;

    
}

.title-container {
    

    margin-bottom: 20rem;
    position: absolute;
}

.subheading {
    color: #a4a4a4;
}

h2 {
    font-size: 5rem;
    font-weight: bold;
    /* align-self: center; */
}

#timer-header {
    font-size: 4.5rem;
    
}

h3 {
    font-size: 0.8rem;
    font-weight: lighter;
}

.container-timer-outter {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    height: 100%;
    


}

.countdown-container {
    
    min-height: 100%;
    bottom: 0;
    display: flex;
    flex-direction: column;


    justify-content: center;
    align-items: center;
    text-align: center;
}


.countdown-figures-wrapper {
    height: 10rem;
    /* width: 32rem; */
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 1rem;

    align-items: center;
    text-align: center;
    border-radius: 5px;
    /* box-shadow: 4px 3px 10px rgb(202, 202, 202); */

    
}



.countdown-figures-container {
    display: flex;
    flex-direction: row;

    gap: 1rem;

}




/* Good Below */

.container-figure {
    /* margin-right: 2rem; */
    min-width: 4rem;
    max-width: 7rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
   
    
} 


.time-figure {
    /* margin: 1rem 1rem .2rem 1rem; */
    font-size: 3rem;
    font-weight: normal;
    padding: 0;
    margin: 0;
    
}
/* top right btm left */


.footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 12px;
    color: grey;
    text-decoration: none;
    bottom: 0.5rem;
    position: sticky;

}

a:link {
    text-decoration: none;
    color: grey;
}

a:link:hover {
    text-decoration: underline;
    color: black;
}

