body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    text-align: center;
    padding: 20px;
}

h1 {
    color: #333;
}

#repo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.repo-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 15px;
    width: 300px;
    transition: transform 0.3s ease-in-out;
}

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

.repo-card h3 {
    margin: 0;
    color: #007bff;
}

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

.repo-card a {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    color: #fff;
    background: #007bff;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background 0.3s;
}

.repo-card a:hover {
    background: #0056b3;
}
