body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f5f5f5;
    color: #333;
}

header {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #0082C8;
    color: white;
}

.profile-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin-right: 20px;
}

.about {
    padding: 20px;
    background: #fff;
    margin: 20px;
    border-radius: 8px;
}

.projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.project {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.project img {
    width: 100%;
    height: auto;
    margin-top: 10px;
    border-radius: 4px;
}
