/*******************************************************************
                    STYLE DE LA PAGE D'AUDIOVISUEL
********************************************************************/

.audiovisuel {
    /* Le layout de la page*/
    display: flex;
    flex-direction: column;
    align-items: center;

    h3 {
        padding-top: 0;
    }

    h4 {
        width: 65%;
        max-width: 60rem;
        text-align: center;
        padding-bottom: 4rem;
        align-self: center;
    }

    h2 {
        width: 320px;
        text-align: center;
        
        span {
            font-family: var(--police-secondaire);
            color: var(--couleur-accent-primaire);
            font-size: 40px;
        }
    }

    .txt_bold {
        font-weight: var(--graisseur-gras);
    }
}

/* En tablette */
@media (min-width: 768px) {
    .audiovisuel {
        h2 {
            width: 600px;

            span {
                font-size: 100px;
            }
        }
    }
}

/* En desktop */
@media (min-width: 1024px) {
    .audiovisuel {
        h2 {
            width: 90vw;
        }
    }
}