@keyframes pop { 0% { scale: 0; } 80% { scale: 2.2; } 100% { scale: 2; } } @keyframes scroll { from { width: 6%; } to { width: 80%; } } @keyframes appeartext { from { font-size: 0pt; } to { font-size: 12pt; } } .Alert { margin: auto; background-color: #FFB238; border: #000 0px solid; border-radius: 10px; padding: 20px; color: black; margin-top: -20px; font-size: 12pt; font-family: 'Manrope'; mix-blend-mode: screen; animation-name: scroll; animation-duration: 2s; animation-delay: .6s; animation-fill-mode: forwards; animation-timing-function: ease; width: 6%; display: block; } .Alert>i { animation-name: pop; animation-duration: .5s; animation-delay: .4s; animation-fill-mode: forwards; animation-timing-function: ease; scale: 0; font-size: 12pt; } .Alert>span { animation-name: appeartext; animation-duration: .8s; animation-delay: 1s; animation-fill-mode: forwards; animation-timing-function: ease; font-size: 0pt; }