* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family:
        system-ui,
        -apple-system,
        sans-serif;
    background: #333;
    padding: 40px;
}
h1 {
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}
.projects-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}
.project-card {
    flex: 1 1 300px;
    max-width: 400px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}
.project-card:hover {
    transform: translateY(-1px);
}

.preview {
    width: 100%;
    height: 200px;
    display: block;
}
.project-info {
    padding: 20px;
}
.project-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}
.project-desc {
    color: #666;
    font-size: 0.9rem;
}
