body {
    margin: 0;
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    display: flex;
    background-color: #fcfcfc;
    color: #1a1a1a;
}

.sidebar {
    width: 300px;
    height: 100vh;
    padding: 40px;
    position: fixed;
    border-right: 1px solid #eee;
}

.project-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
}

.project-list li {
    margin-bottom: 15px;
}

.project-list a {
    text-decoration: none;
    color: #888;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.project-list a:hover {
    color: #000;
}

.content {
    margin-left: 380px;
    padding: 40px;
    max-width: 800px;
}

.project {
    margin-bottom: 100px;
}

.project img {
    width: 100%;
    height: auto;
    filter: grayscale(100%); /* Kolaj estetiği için */
}

h1 { font-size: 1.2rem; letter-spacing: 2px; }
h2 { font-size: 1.1rem; margin-top: 20px; }
