/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header styles */
header {
    display: flex;
    justify-content: flex-end;
    padding: 20px 0;
}

.nav-link {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
}

/* Main content styles */
main {
    margin-top: 40px;
}

h1, h2, h3 {
    margin-bottom: 20px;
}

p {
    margin-bottom: 20px;
}

/* Project styles */
.project {
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.project h3 {
    color: #0066cc;
}

.project ul {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    max-width: 400px;
    margin-top: 20px;
}

/* Contact section styles */
#contact {
    margin-top: 60px;
    text-align: center;
}

.contact-links {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-link {
    margin: 0 10px;
    text-decoration: none;
    color: #0066cc;
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    header {
        justify-content: center;
    }

    .project ul {
        flex-direction: column;
        align-items: flex-start;
    }
}