/* style.css */
body {
    font-family: 'Montserrat', Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
}

.container {
    padding: 20px;
}

h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 700; /* Bold */
    margin-bottom: 40px;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    width: 300px;
    border: 5px solid;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    background-color: #fff;
}

.card img {
    max-width: 200px;
}

.card h2 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 30px;
    font-weight: 700; /* Semi-bold */
    margin: 15px auto 0;
    width: 245px;
}

.card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: grid;
    align-items: center;
    justify-content: center;
}

.card ul li {
    font-family:Lobster;
    font-size: 16px;
    font-weight: 400; /* Regular */
    margin: 8px 0;
    align-items: center;
    display: flex;
    justify-content: left;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
}

.card ul li a {
    text-decoration: none; /* Rimuove la sottolineatura */
    color: inherit; /* Mantiene il colore del testo */
}

.card.red {
    border-color: #cd1f2a;
}

.card.green {
    border-color: #00a000;
}

.button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 20px;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 700; /* Semi-bold */
    margin-top: 10px;
    transition: transform 0.4s ease; /* Smooth scaling */
}

.button:hover {
    transform: scale(0.85); /* Scale to 85% */
    transition: transform 0.4s ease; /* Smooth scaling */
}

.button.red {
    background-color: #cd1f2a;
}

.button.green {
    background-color: #00a000;
}

.back-button {
    display: inline-block;
    margin-top: 40px;
    padding: 12px 30px;
    background-color: #00cc88;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
    transition: transform 0.4s ease; /* Smooth scaling */
}

.back-button:hover {
    transform: scale(1.1); /* Scale to 85% */
    transition: transform 0.4s ease; /* Smooth scaling */
}

.logo{
    width: auto;
    height: 120px;
    margin: 0 auto;
}

.icon {
    display: inline-block;
    height: 22px;
    width: auto;
    line-height: 1;
    vertical-align: -0.5em;
    margin-right: 5px;
}