body {
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.header {
    background-color: #888;
    color: white;
    text-align: center;
    padding: 60px;
}

.projects {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.project {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    overflow: hidden;
    width: 300px;
    flex-shrink: 0;
}

.project img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.name {
    background-color: #eee;
    padding: 10px;
    font-weight: bold;
}

.desc {
    padding: 10px;
}

/* Mobile Optimization */
@media (max-width: 600px) {
    .project {
        width: 90%;
    }
}