*{
    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{
    text-align: center;
    padding: 40px 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
    margin-bottom: 30px;
}
header h1{
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}
header .subtitle{
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 15px;
}
header .bio{
    max-width: 600px;
    margin: 0 auto;
}
.skills{
    padding: 30px 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.skills h2{
    color: #2c3e50;
    margin-bottom: 20px;
}
.skills-list{
   list-style: none;
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
}
.skills-list li{
    background-color: #3498db;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 
}
.project-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px 0;
}
.project{
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.project h3{
    color: #2c3e50;
    margin-bottom: 10px;
}
.project p{
    color: #666;
}
footer{
    margin-top: 50px;
    padding: 30px 20px;
    background-color: #2c3e50;
    color: white;
    border-radius: 8px;
    text-align: center;
}
footer h2{
    margin-bottom: 20px;
}
footer p{
    margin-bottom: 10px;
}