body {
    margin: 0;
    font-family: system-ui;
    font-size: 1.2em;
    background: #eee;
    
    header, main {
        padding-inline: 2rem;
    }
    
    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-block: 1rem;
        background: hsl(0 70% 40%);
        color: hsl(0 100% 90%);
        h1 {
            margin: 0;
        }
        nav {
            font-size: 1.2em;
            display: flex;
            gap: 1rem;


            a {
                color: inherit;
                text-decoration: none;
                padding: 0.25em 0.5em;
                background: hsl(0 0% 100% / 0.1);
                transition: background 200ms;

                &:hover {
                    background: hsl(0 0% 0% / 0.2);
                }
            }        
        }
    }

    main {
        font-weight: 300;
        line-height: 1.5;
        p {
            max-width: 70ch;
        }
    }
}


ul.nice {
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    li {
        padding: 0.5rem 1rem;
        background: linear-gradient(#ddd, #eee);
        border: 0.5px solid black;
    }
    a {
        color: inherit;
        font-size: 1.4em;
    }
}

ul.distinct {
    background: white;
    > li {
        padding: 1rem;
        &::marker {
            content: "👷";
        }
    }
}