body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    color: #333;
    background-color: #faf7f2;
}

.profile {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.profile-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 2rem;
}

.profile img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

.social-icons a {
    color: #333;
    font-size: 1.5rem;
    transition: color 0.2s ease;
}

.social-icons a:hover {
    color: #0366d6;
}

.email {
    font-size: 0.9rem;
    color: #666;
}

.project {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.project img {
    width: 200px;
    height: auto;
    margin-right: 1.5rem;
    border-radius: 4px;
}

.project-content {
    flex: 1;
}

.project-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.company-logo {
    height: 1.2em;
    width: auto;
    vertical-align: middle;
}

a {
    color: #0366d6;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.italic {
    font-style: italic;
} 