style = html`<style>
.button {
border: none;
border-radius: 3vw;
color: white;
padding: 20px 40px;
text-align: center;
text-decoration: none;
//display: inline-block;
font-size: 30px;
margin: 2vw 2vw;
width: 250px;
height: 80px;
cursor: pointer;
background-color: #4CAF50;
}
.fadetext {
font-family: Arial;
font-size: 60px;
animation: fadeIn 5s;
}
@keyframes fadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
}
.pulse {
border-radius: 25px;
border: 2px solid #73AD21;
width: 200px;
text-align: center;
animation: pulse 1s 2 ease-in-out alternate;
}
@keyframes pulse {
from { transform: scale(1); }
to { transform: scale(2); }
}
.textchange {
text-align: center;
transform: scale(1);
transition: transform 0.3s ease-out;
}
</style>
<div class="fadetext"><img src="https://play-lh.googleusercontent.com/03u7ovx5WUvmOWJDIxlNYaQY60hgcNzyRKQ5Bugex_zl-UXrxxXY4ROHEm179xly9OFr=s26-rw" /></div>
`