header {
    font-family: 'Titillium Web';
    font-weight: bold;
    border-bottom: 1px solid #ddd;
}

.center {
    text-align: center;
}

.center td {
    text-align: center;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin: 20px 0;
}

.card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.203);
}

a {
    text-decoration: none;
    color: black;
}

.link-cell button {
    width: 100%;
    height: 100%;
    padding: 8px;
    /* Aggiunge padding al pulsante */
    border: none;
    background-color: transparent;
    /* Rendi il background trasparente se non vuoi un colore specifico */
    cursor: pointer;
    text-align: center;
}

button:hover {
    background-color: #eeeeee;
    /* Change background color on hover */
    cursor: pointer;
    /* Change cursor to pointer on hover */
}

