/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

/* Header styling */
header {
    background-color: #1e1e1e;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin-bottom: 10px;
}

header nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

header nav a:hover {
    text-decoration: underline;
}

/* Sections */
section {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

section h2 {
    margin-bottom: 20px;
    color: #1e1e1e;
}

/* Projects */
.project-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.project h3 {
    margin-bottom: 10px;
}

.project a {
    color: #1e90ff;
    text-decoration: none;
}

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

/* Contact links */
#contact a {
    color: #1e90ff;
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #1e1e1e;
    color: white;
    margin-top: 50px;
}
