
.spin {
    animation: spin 2s infinite linear;
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}


:root {
    --sfondoChiaro: rgba(162, 197, 22, 0.2);
    --verdeScuro: rgb(0, 150, 64);
    --textColor: rgb(68,68,68);
    --grigioChiaro: rgb(204,204,204);
}

.resultContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 2em;
    border: solid 0.2em var(--verdeScuro);
    padding: 1em; 
    margin: 2em 0px;
    box-shadow: 0px 0px 0.5em 0px var(--verdeScuro);
}
.resultContainer h2 {
    text-transform: uppercase;
    margin: unset;
    width: 100%;
    text-align: center;
    color: var(--verdeScuro);
    font-weight: bold;
    font-size: 2.5em;
}
.resultContainer h3 {
    color: var(--textColor);
    font-size: 2em;
    text-align: center;
    margin: 1em 0px;
    width: 100%;
    text-align: center;
}
.countdownDiv {
    width: 9em;
    height: 9em;
}
.countdownDiv img {
    position: relative;
    width: 100%;
}
.countdownDiv p {
    position: relative;
    top: -1.8em;
    font-size: 3em;
    font-weight: bold;
    color: var(--verdeScuro);
    margin: unset;
    text-align: center;
}
.resultContainer span {
    width: 100%;
    text-align: center;
    margin: unset;
    padding: unset;
    font-size: 1.2em;
    color: var(--textColor);
    margin-top: 0.5em;
}
.resultContainer span a {
    color: var(--verdeScuro);
    text-decoration: underline;
    cursor: pointer;
    margin: unset;
    padding: unset;
    font-size: 1.2em;
}

.inputField {
    font-size: 1.5em;
    padding: 0.3em 1em;
    text-align: center;
    border: solid 0.05em var(--grigioChiaro);
    border-radius: 0.3em;
    width: 100%;
}

.formCEM button {
    padding: 0.3em 1em;
    font-size: 1.5em;
    border-radius: 0.5em;
    border: solid 0.1em var(--grigioChiaro);
    background-color: transparent;
    color: var(--verdeScuro);
    font-weight: bold;
}
.formCEM button:hover {
    transform: scale(1.1);
}

.formCEM line {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.formCEM line h3 {
    text-transform: uppercase;
    margin: unset;
    text-align: center;
    color: var(--verdeScuro);
    font-weight: bold;
    font-size: 2em;
}

.formCEM ul li {
    width: 100%;
    text-align: center;
    font-size: 1.2em;
    padding: 0.3em;
    border: solid 0.1em var(--grigioChiaro);
    border-radius: 0.5em;
    margin-top: 0.1em;
}
.formCEM ul li:hover {
    cursor: pointer;
    background-color: var(--sfondoChiaro);
}

.titoloPost {
    padding: unset;
    margin-bottom: unset;
    font-weight: bold !important;
    color: var(--verdeScuro) !important;
}