
body {
    background: #181a20;
    color: #e2e2e2;
    font-family: 'Inter', Arial, sans-serif;
}
.portfolio-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-top: 40px;
}
.project-card {
    background: #23262f;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    width: 420px;
    min-height: 140px;
    overflow: hidden;
    transition: box-shadow 0.2s;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    color: #e2e2e2;
    padding: 0;
}
.project-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.32);
}
.project-image {
    width: 90px;
    height: 90px;
    object-fit: cover;
    background: #181a20;
    border-radius: 50%;
    margin: 0 0 0 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    display: block;
    flex-shrink: 0;
}
.project-content {
    padding: 24px 24px 24px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}
.project-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}
.project-description {
    font-size: 1rem;
    color: #bdbdbd;
    margin-bottom: 16px;
    flex: 1;
}
.project-link {
    align-self: flex-end;
    color: #6ab7ff;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}
.project-link:hover {
    color: #90caf9;
    text-decoration: underline;
}
