:root {
    --white: #f0f0f0;
    --light-gray: #999999;
    --dark-gray: #202020;
    --lime-green: #c3f7d6;
}

* {
    color: var(--almost-black);
}

/* -- General Aspect -- */
html, body {
    height: 100%;
    font-size: 18px;
}

body {
    background-color: var(--dark-gray);
}

.mais {
    font-variant: small-caps;
}

.footer {
    flex-shrink: 0;
}

.hidden {
    display: none;
}
/* ---- */

/* -- Components -- */
#lista {
    height: 60px;
}

#idee {
    height: 60px;
    background-color: #fff;
}

.block {
    padding-top: 2em;
    padding-bottom: 2.5em;
}

.footerPush {
    width:100%;
    bottom: 0;
    position: absolute;
}

.sFooter {
    padding-top: 2em;
    padding-bottom: 1em;
    background-color: var(--dark-gray);
    text-align: center;
    line-height: 80%;
}

.sFooter h6, a, button {
    text-decoration: none;
    color: var(--white);
    font-variant: small-caps;
}

.pdImg {
    padding: 5px;
}

.hImg {
    height: 500px !important;
    width: auto;
}

.tbCenter {
    margin-left: auto;
    margin-right: auto;
}

.card img {
    height: 400px;
    width: 400px;
    border-radius: 50%;
    margin: 15px;
}

.equal-height {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.card-body {
    flex-grow: 1;
}
/* ---- */

/* -- Colors -- */
.bg-light-gray {
    background-color: var(--light-gray);
}

.bg-dark-gray {
    background-color: var(--dark-gray) !important;
    border-color: var(--dark-gray) !important;
    color: var(--white);
}

.bg-white {
    background-color: var(--white);
}
/* ---- */

@media (max-width: 992px) {
    .card img {
        height: 300px;
        width: 300px;
    }

    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 1rem; /* Spaziatura dal bordo */
    }
}