*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: none;
    font-family:'Courier New', Courier, monospace;
}
nav{
    width: 100vw;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
nav a{
    text-decoration: none;
    padding: 1rem;
    text-align: center;
    color: teal;
    box-shadow: 3px 3px 0px teal;
    border: 1px solid teal;
}
h1{
    text-align: center;
    margin-bottom: .5rem;
    
}
#Clock ,#Clock2{
    display: flex;
    align-items: center;
    justify-content: center;
}
#Clock div ,#Clock2 div{
    width: 80px;
    height: 30px;
    text-align: center;
    margin: .55rem;
}
section{
    padding: 1rem;
    display: flex;
    align-items: start;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 100vw;
}
.box{
    margin: 1rem;
    border: 1px solid black;
    padding: 1.5rem 3rem;
    /* transform: rotate(-2deg); */
    box-shadow: 3px 3px 0px #000000;
}
a{
    text-decoration: none;
    color: teal;
}
a:hover{
    color: aquamarine;
}
u{
    text-decoration: underline dotted;
    text-decoration-color: teal;
}
b{
    text-decoration: none;
    color: tan;
}
ol li{
    margin-block:1rem;
}
ol > *{
    margin-left: .2rem;
    
}
ol ol{
    border-left: 1px dotted teal;
    list-style-type:decimal;
    list-style-position: inside;
}
#life td{
    padding: 1rem;
}
#life tbody td:nth-child(n+1):nth-child(-n+2){
    background-color:greenyellow;
}
#life tbody td:nth-child(3){
background: linear-gradient(90deg, greenyellow 40%, orange 60%);
}
#life tbody td:nth-child(n+4):nth-child(-n+6){
    background-color: orange;
}
#life tbody td:nth-child(7){
    background: linear-gradient(90deg, orange 20%, yellow 40%);
}
#life tbody td:nth-child(n+8):nth-child(-n+10){
    background-color: yellow;
}