.card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-4px);
}

.card a {
    text-decoration: none;
    color: #6200ea;
    font-weight: bold;
}

.home-titlecard {
    background: linear-gradient(135deg, #ffd500, #000000);
    color: white;
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
}

.home-titlecard h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.home-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    transition: transform 0.2s;
    max-width: 100%;
    padding: 1.5rem;

}

.home-card:hover {
    transform: translateY(-4px);
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

}

.home-card a {
    text-decoration: none;
    color: #0074D9;
    font-weight: 600;
}