/* PARTE DEL CODICE DELLO STILE DELL'INTRO DI PASSOSCURO */

/* padding verticale per le sezioni */
section {
    padding: 3rem 0;
}

.main-history-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 150px;
}

/* modifica del titolo dell'intro */
.main-intro-content h2 {
    text-align: center;
    font-size: 25px;
    color: var(--primary-color);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0, 0.1);
}

/* modifica del paragrafo */
.main-intro-content p {
    text-align: center;
    font-size: 16px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    line-height: 1.6;
    max-width: 90vw;
    margin: 0 auto;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.12rem;
}

/* SEPARATORE */
.divider-image {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.1) 100%);
    height: 150px;
    margin: 0.1rem 0;
}


