.main-heading { display: block; overflow: visible; }

.main-heading .word {
    display: block;
    transform: translateY(18px);
    opacity: 0;
    /* background: linear-gradient(90deg, #ff7a18 0%, #af002d 45%, var(--blue-600) 100%); */
    background: linear-gradient(90deg,
        var(--gray-900) 0%,
        var(--blue-600) 45%,
        var(--gray-900) 100%);
    /* background: linear-gradient(90deg, #312e81 0%, #1e3a8a 45%, #701a75 100%); */
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation:
        rise 1600ms cubic-bezier(.2,.9,.2,1) forwards,
        shimmer 4400ms linear 2s infinite;
}

.main-heading .word:nth-child(1) { animation-delay: 0s, 0.8s; }
.main-heading .word:nth-child(2) { animation-delay: 0.16s, 1.2s; }

@keyframes rise {
    from { transform: translateY(18px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

@keyframes shimmer {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

main {
    padding-top: 10rem;
    padding-bottom: 3rem;
}

@media (max-width: 768px) {
    main {
        padding-top: 5rem;
        padding-bottom: 2rem;
    }
}