/* External CSS styles in styles.css */

/* Style for the main heading */
.main-heading {
    text-align: center;
    font-size: 32px;
    margin-top: 20px;
}

/* Style for cards */
.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    margin-bottom: 20px;
}

.card:hover {
    transform: translateY(-5px);
}

/* Style for card titles */
.card-title {
    font-size: 24px;
}

/* Style for card text */
.card-text {
    font-size: 16px;
}

/* Style for the "View Group" button */
.btn-primary {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    border-radius: 5px;
}

.btn-primary:hover {
    background-color: #0056b3;
}
