См. Изменения в исходном коде.
.intros {
color: rgb(49, 49, 49);
font-family: Raleway;
animation: heading;
animation-duration: 2s;
animation-fill-mode: forwards;
position: relative; /* Added */
}
@keyframes heading {
0% {
right: -700px
}
100% {
right: 0; /* Changed */
}
}
<div class="intros">
<h1>Text</h1>
<p>Text</p>
</div>