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

body {
    font-family:
        -apple-system, system-ui, "Segoe UI", Roboto, Ubuntu, Cantarell,
        "Noto Sans", sans-serif, BlinkMacSystemFont, "Helvetica Neue", Arial;
    font-weight: 300;
    background: #f5f5f5;
    color: #212a37;
    font-size: calc(1.4em + 0.2vw);
    line-height: 1.5;
    padding: 1.25rem;
}

a {
    color: #212a37;
    text-decoration: underline;
}

.container {
    max-width: 87.5rem;
    margin: 0 auto;
}

.intro {
    margin-bottom: 3.75em;
    font-size: 1em;
    max-width: 50rem;
    line-height: 1.3;
}

.intro p {
    margin-bottom: 0.8em;
}

.intro ul {
    margin: 0;
    padding-left: 0;
    list-style-type: none;
}

.intro li {
    margin-bottom: 0.3em;
    padding-left: 1.2em;
    text-indent: -1.2em;
}

.intro li::before {
    content: "- ";
    padding-right: 0.5em;
}

main {
    margin-bottom: 6.25em;
}

.project {
    display: grid;
    grid-template-columns: 8em minmax(12em, auto) auto 1fr;
    gap: 0.5em;
    align-items: center;
    padding: 0.75em 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.7em;
}

.project:first-child {
    border-top: 1px solid #e0e0e0;
}

.project-date {
    white-space: nowrap;
    font-family: monospace;
    opacity: 0.6;
    font-size: 0.9rem;
}

.skills {
    display: flex;
    gap: 0.5em;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.skill {
    padding: 0.125em 0.5em;
    background: transparent;
    border: 1px solid #d0d0d0;
    border-radius: 0.25em;
    font-size: 0.6875em;
    letter-spacing: 0.03em;
}

.industry {
    padding: 0.125em 0.5em;
    background: transparent;
    border: 1px solid #d0d0d0;
    border-radius: 0.25em;
    font-size: 0.6875em;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 1.25em;
    font-size: 0.6em;
}

footer a {
    color: #212a37;
    text-decoration: underline;
}

@media (max-width: 48em) {
    .project {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5em;
    }
}
