body {
    padding: 0;
    margin: 0;
    font-size: 1.2rem;
    background-color: #004b49;
    color: aliceblue;
    font-family: "Artifakt Element", sans-serif;
}

a {
    text-decoration: none;
}


/*a:visited {*/
/*    color: blue;*/
/*}*/

ol li {
    padding: 0.5rem;
    margin-left: 0.2rem;
}

.pending {
    color: aliceblue;
    font-weight: 600;
}

.in-progress {
    color: yellow;
    font-weight: 600;
}
.done {
    color: #0096FF;
    font-weight: 600;
}

.to-be-extended{
    color: tomato;
    font-weight: 600;
}

ol {
    display: flex;
    flex-direction: column;
    padding: 15px 5px;
}

.level2, .level3 {
    display: none;
    /*margin-left: 0.8rem;*/
}

ol.level2 {
    list-style-type: upper-alpha;
}

ol.level3 {
    list-style-type: decimal;
}

.collapsible {
    display: flex;
    align-items: flex-start;
    border: 1px solid grey;
}

.collapsible img {
    background-color: lightgreen;
    margin-right: 2rem;
}

.color-code {
    list-style-type: none;
    display: flex;
}

.color-code li {
    padding: 14px;
}

.fa-square {
    margin-right: 1rem;
}

.yellow{
    color: yellow;
}

.blue {
    color: #0096FF;
}

.tomato {
    color: tomato;
}

