body {
    font-family: Arial, sans-serif;
    background-color: #f0f2f5;
    margin: 0;
    padding: 20px;
    color: #333;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

header .profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
}

h1, h2 {
    color: #2c3e50;
}

main {
    max-width: 800px;
    margin: 0 auto;
}

ul#project-list {
    list-style: none;
    padding: 0;
}

ul#project-list li {
    background-color: #fff;
    margin: 10px 0;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

ul#project-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

ul#project-list a {
    text-decoration: none;
    color: #2980b9;
    font-weight: bold;
}

ul#project-list a:hover {
    text-decoration: underline;
}
