<!DOCTYPE html>
<title>Example</title>
<style>
.animatedBox {
width: 200px;
padding: 20px;
text-align: center;
font: 24px sans-serif;
color: white;
background: yellowgreen;
border: 0px solid darkgreen;
animation: myAnimation 6s linear 1s 1 forwards;
}
@keyframes myAnimation {
50% {
border: 60px solid orange;
</style>
<div class="animatedBox">Animated box</div>