.herospazio {
    margin-top: 450px;
}

.spazio0 {
    margin-top: 80px;
}

.spazio1 {
    margin-top: 150px;
}

.imggrande {
    height: 480px;
    object-fit: cover;
    width: 100%;
}

.imgpiccola {
    height: 300px;
    object-fit: cover;
    width: 100%;
}

small {
    font-size: 11px;
}

.navbar-blur {
    background: rgba(235, 235, 235, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px rgba(200, 200, 200, );
}

.formcard {
    padding: 10px 0px;
}

.active {
    background-color: rgb(255, 162, 0);
    border-radius: 5px;
}


.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 20px 0;
}

.marquee-text {
    display: inline-block;
    font-size: 10rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: rgb(0, 0, 0);
    animation: scrollText 10s linear infinite;
}

@keyframes scrollText {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}