body {
    font-family: 'Manrope', sans-serif;
    background: white;
    color: black;
    font-size: 1rem;
    line-height: 2;
}

@keyframes fade {
    to {
        opacity: 1
    }
}

nav a {
    transition: ease 0.2s;
    color: rgba(0, 0, 0, 0.5);
}

nav a:hover {
    color: black;
}

.section {
    display: flex;
    justify-content: space-between;
    padding-top: 1.5rem;
    transition: ease 0.2s;
    line-height: 2;
}

nav button {
    color: #00000080;
}


.dark {
    background-color: #18181b;
    color: white;
}

.dark a {

    color: #FFFFFF80;
}

.dark a:hover {
    color: white;
}

.dark nav button {
    color: #FFFFFF80;
}

footer {
    font-size: .8rem;
}

section ul {
    list-style-type: circle;
}