body {
    margin: 0;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 16px;
}

.container {
    display: flex;
    width: 100%;
}

.sidebar {
    width: 250px;
    background-color: #1e1e1e;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
    position: fixed;
    height: 100vh;
    box-shadow: 2px 0 5px rgba(0,0,0,0.5);
    font-weight: 500;
    font-size: 14px;
    color: #bbb;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #026748;
    margin-bottom: 30px;
    text-align: center;
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px auto;
    border: 3px solid #026748;
    box-shadow: 2px 0 5px rgba(0,0,0,0.5);
}

.nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 1rem;
}

.nav-link {
    color: #bbb;
    text-decoration: none;
    padding: 10px 15px;
    border-left: 4px solid transparent;
    border-radius: 4px 0 0 4px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.nav-link:hover, .nav-link.active {
    color: #026748;
    background-color: #2c2c2c;
    border-left-color: #026748;
    padding-left: 20px;
}


.content {
    margin-left: 250px;
    padding: 40px 60px 40px 60px;
    width: 100%;
    overflow-y: auto;
    font-size: 1rem;
}

h2 {
    font-size: 2.5rem;
    color: #026748;
    margin-bottom: 0.5em;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-top: 1.5em;
    margin-bottom: 0.3em;
    font-weight: 700;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1em;
    color: #ddd;
}

ul {
    padding-left: 20px;
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 1.5em;
}

li {
    margin-bottom: 0.6em;
}

em {
    color: #999;
    font-style: italic;
    font-weight: 500;
    font-size: 0.95rem;
}

.project {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid #333;
    padding-bottom: 30px;
}

.project-preview {
    width: 300px;
    border-radius: 8px;
    border: 1.7px solid #f1f1f1c4;
    background-color: #1a1a1a;
    object-fit: cover;
}


.project h3 {
    margin-top: 0;
    color: #026748;
    font-size: 1.4rem;
}

.project a {
    display: inline-block;
    margin-top: 10px;
    color: #026748;
    text-decoration: none;
    font-weight: 600;
}

.project a:hover {
    text-decoration: underline;
}