body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #000000;
    color: #fff;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

.App {
    max-width: 900px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex-grow: 1;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    background-color: #0d0d0d;
    color: #fff;
}

.profile-info {
    display: flex;
    align-items: center;
}

.profile-pic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1.5rem;
    object-fit: cover;
}

.text-info .name {
    font-size: 1.8rem;
    margin: 0 0 0.2rem 0;
}

.text-info .title {
    font-size: 1rem;
    color: #aaa;
    margin: 0 0 0.5rem 0;
}

.text-info .hire-me {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

.hire-me a {
    color: #fff;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    transition: transform 0.2s, opacity 0.2s;
}

.social-links a:hover .social-icon {
    opacity: 0.7;
    transform: translateY(-2px);
}

.social-links a:nth-child(2) .social-icon {
    fill: #0077b5;
}

.section {
    padding: 2rem 4rem;
    background-color: #000000;
    color: #fff;
    border-bottom: 1px solid #222;
}

.section:last-child {
    border-bottom: none;
}

.sectionTitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #eee;
}

.itemsContainer {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.projectItem {
    margin-bottom: 0.5rem;
}

.projectTitle {
    font-size: 1.1rem;
    color: #fff;
    margin: 0 0 0.3rem 0;
}

.projectTitleLink {
    text-decoration: none;
}

.projectTitleLink:hover .projectTitle {
    text-decoration: underline;
}

.projectDescription {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.4;
    margin: 0;
}