:root {
    --bg-dark: #111213;
    --fg-light: #d6d6d6;
    --matrix-green: #39FF14;
}

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

body {
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', 'Consolas', monospace;
    line-height: 1.8;
    color: var(--fg-light);
    background-color: var(--bg-dark);
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

#maincontent {
    max-width: 800px;
    padding: 20px;
    text-align: left;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

h3.section-title {
    font-size: 1rem;
    font-weight: 400;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #a0a0a0;
}

p {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

ul {
    list-style-position: inside;
    margin-bottom: 1.5rem;
    padding-left: 0;
}

ul.experience-list {
    list-style-type: disc;
    margin-bottom: 1rem;
}

li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

a {
    color: var(--fg-light);
    text-decoration: underline;
    transition: opacity 0.2s;
}

.contact {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

@media (max-width: 768px) {
    body {
        padding: 30px 20px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    p, li {
        font-size: 1rem;
    }

    .intro {
        font-size: 1.1rem;
    }
}
