Tourism
body {
}
/* CSS */
.button-85 {
padding: 2em 4em;
border: none;
outline: none;
color: white;
background:#2AA69B ;
cursor: pointer;
position: relative;
border-radius: 10px;
margin: 5px 5px 10px 10p
border-radius: 10px;
}
position: absolute;
top: -2px;
left: -2px;
background-size: 400%;
z-index: -1;
filter: blur(5px);
-webkit-filter: blur(5px);
width: calc(100% + 4px);
height: calc(100% + 4px);
animation: glowing-button-85 20s linear infinite;
transition: opacity 0.3s ease-in-out;
border-radius: 10px;
}
@keyframes glowing-button-85 {
0% {
background-position: 0 0;
}
50% {
background-position: 400% 0;
}
100% {
background-position: 0 0;
}
}