css = html`
<style>
@font-face {
font-family: 'AndaleMono';
src: url('${await andaleMono.url()}');
}
.textcontainer {
position: relative;
min-height: 270px;
font-family: 'AndaleMono', monospace;
font-size: 3vw;
}
.text {
position: absolute;
color: rgba(0,0,0,0);
transition: color 1s ease-in-out;
}
.text.visible {
color: rgba(0,0,0,255);
/* starts readable */
}
</style>
`