.finance-h2 {
    position: relative;
    font-size: 2em;
    height: 25vh;
    color: var(--accent-color);
    text-align: center;
    -webkit-animation: intro 1.3s;
    animation: intro 1.3s;
}

@keyframes intro {
    0% {
        left: -100px;
        opacity: 0;
    }
    100% {
        left: -0;
        opacity: 1;
    }
}