.text-title,
.page-title {
    animation: title-appear linear;
    animation-timeline: view();
    animation-range-start: cover 0%;
    animation-range-end: contain 30%;
}

/* Tout les titres verts apparaisse en scrollant */
@keyframes title-appear {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}