import {css} from 'lit'; export const styles = css` :host { width: 100%; height: 100%; position: absolute; top: 0; left: 0; background: #000000b5; display: flex; align-items: center; justify-content: center; z-index: 2; text-align: center; } .limit-info-container { display: flex; flex-direction: column; align-items: center; justify-content: center; row-gap: 8px; } .limit-info-text { color: white; } .limit-info-cta { color: white; text-decoration: none; background-color: #5046e5; padding: 8px 16px; border-radius: 4px; } `;