
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<style>
body {
background-color: #576b9538;
padding: 50px;
}
.container {
background: #07c160;
width: 200px;
height: 50px;
text-align: center;
line-height: 50px;
text-align: center;
color: white;
border-radius: 50px;
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.05);
}
100% {
transform: scale(1);
}
}
</style>
<body>
<div class="container">213</div>
</body>
</html>