body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    text-align: center;
}

.container {
    max-width: 80%;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

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

.card {
    background: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 200px;
}

.card h2 {
    font-size: 18px;
    margin: 0 0 10px;
}

.card p {
    font-size: 14px;
    color: #555;
}

.card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease-in-out;
}

.card:hover {
    transform: scale(1.05);
}