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

body {
    font-family: monospace;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 200px;
    border-right: 1px solid #000;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    overflow-y: auto;
}

.sidebar-content {
    padding: 1rem;
}

.sidebar h2 {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: bold;
}

.sidebar ul {
    list-style: none;
}

.sidebar li {
    margin-bottom: 0.5rem;
}

.sidebar a {
    color: #000;
    text-decoration: underline;
    display: block;
}

.sidebar a:hover {
    text-decoration: none;
}

.sidebar a.active {
    font-weight: bold;
}

.main-content {
    margin-left: 200px;
    flex: 1;
    padding: 3rem;
    width: calc(100% - 200px);
}

.container {
    max-width: 800px;
}

h1 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

h2 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

h3 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #000;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

.project-list {
    margin-top: 1rem;
}

.project-item {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #000;
}

.project-item h3 {
    margin-top: 0;
}

.project-description {
    margin-bottom: 0.5rem;
}

.project-link {
    text-decoration: underline;
}

#markdown-content {
    line-height: 1.6;
}

#markdown-content img {
    max-width: 100%;
    height: auto;
    border: 1px solid #000;
}

#markdown-content pre {
    border: 1px solid #000;
    padding: 0.5rem;
    overflow-x: auto;
    margin: 1rem 0;
}

#markdown-content code {
    font-family: monospace;
}

.social-icons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.social-icons img {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .sidebar {
        width: 150px;
    }

    .main-content {
        margin-left: 150px;
        width: calc(100% - 150px);
    }
}

@media (max-width: 576px) {
    body {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        border-right: none;
        border-bottom: 1px solid #000;
    }

    .main-content {
        margin-left: 0;
        width: 100%;
    }
}
