p.amt is basically my about me summary, however the about me section is at the bottom of my web page, i want the text to only slide across when a user scrolls down to that section, instead of the animation occurring the moment the web page loads.
p.amt {
position: relative;
color: white;
bottom: var(--vamt);
font-size: 20px;
font-family: "Comic Sans MS", cursive, sans-serif;
animation: amtslide 4s 1;
left: 50px;
}
@keyframes amtslide {
0% {text-align:left; left:-1500px;}
25%{text-align:left; left:-1000px;}
50% {text-align:left; left:-500px;}
100% {bottom: var(--vamt); left: 50px;}
}