@keyframes pop { 0% { scale: 0; } 100% { scale: 1; } } .Sticker { background-color: rgba(36, 36, 49, 0.7); color: #ffffff; border-radius: 5px; /* border: #2c2c3b 2px solid; */ padding: 10px; backdrop-filter: blur(20px); mix-blend-mode: screen; position: absolute; scale: 0; animation-name: pop; animation-duration: 1s; animation-fill-mode: forwards; animation-delay: 0s; animation-timing-function: ease; }