@font-face {
font-weight: 400;
font-family: "Montserrat";
font-display: swap;
font-style: normal;
src: url("../font/montserrat/Montserrat-Regular.woff");
}
.element:hover {
animation: pulse 5s infinite;
}
@keyframes pulse {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(90deg);
}
}