/* Stili Generali */
body {
    font-family: Arial, sans-serif;
    background-color: #CFCFFF;
    color: #003366;
    margin: 0;
    padding: 0;
}

.header1 {
    font-weight: bold;
    color: #61008C;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
}

/* Stili per i Link */
a:link, a:visited, a:active {
    color: #61008C;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #FF0000;
    text-decoration: underline;
}

/* Stili Personalizzati per le Carte */
.card-custom {
    background-color: #CFCFFF;
    border: 2px solid #61008C;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-custom:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.card-custom img {
    width: 100%;
    height: auto;
    border-bottom: 2px solid #61008C;
}

.card-custom h5 {
    font-size: 1.2rem;
    color: #61008C;
    margin: 10px 0;
}

.card-custom p {
    font-size: 0.9rem;
    color: #003366;
    margin: 0 10px 10px;
}

/* Stili per i Bottoni */
.btn-primary {
    background-color: #61008C;
    border-color: #61008C;
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #FF0000;
    border-color: #FF0000;
}

/* Media Query per dispositivi mobili */
@media (max-width: 768px) {
    .header1 {
        font-size: 1.5rem;
    }

    .card-custom {
        margin-bottom: 20px;
    }

    .card-custom h5 {
        font-size: 1rem;
    }

    .card-custom p {
        font-size: 0.8rem;
    }

    .btn-primary {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}
