body {
    color: aliceblue;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #0F100F;
}

header > h1{
    text-align: center;
    font-size: 2.3rem;
    color: rgb(144, 212, 8);
}

header > h2 {
    text-align: center;
    font-size: 1.2em;
}

header > h3 {
    text-align: center;
    font-size: 0.9em;
}

.column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 50ch;
    margin: 0 auto;
    text-align: left;
    padding-inline: 50px;
}

section {
    align-self: flex-start;
}

.tech-list {
    margin: 0 auto;
    max-width: 100%;
    font-weight: 500;
    list-style: none;

    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    column-gap: 15px;
    row-gap: 8px;
}

.tech-list li {
    padding: 0.4rem 0.8rem;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 999px;
    font-size: 0.85rem;
    opacity: 0.9;
}

.content-text {
    line-height: 30px;
}