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

body {
    background: #000;
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 400;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    padding: 0 2rem;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000;
    border-bottom: 1px solid #444;
    padding: 1rem 2rem 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

nav span {
    font-weight: 700;
    font-size: 1.5rem;
}

main {
    max-width: 60rem;
    margin: 0 auto;
    padding: 120px 0 100px;
}

.statement {
    color: #ccc;
    margin-bottom: 1rem;
}

a {
    color: #888;
    text-decoration: none;
    border-bottom: 1px solid #888;
    transition: color 0.2s, border-color 0.2s;
}

a:hover {
    color: #fff;
    border-color: #fff;
}

.interests {
    list-style: none;
}

.interest {
    margin-bottom: 1rem;
}

.interest-details {
    color: #ccc;
    margin-top: 0.25rem;
}
