body { margin: 0; padding: 0; }

body main { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; margin: 0; padding: 0; background-color: #111722; font-size: clamp(12px, 2vw, 26px); font-weight: bold; }

body main a { color: white; }

body main a:hover { color: gray; }

body main h1 { position: absolute; color: rgba(255, 230, 247, 0.3); letter-spacing: 1em; font-family: "Roboto"; font-size: 2em; font-weight: 100; font-weight: bold; animation: breathe 20000ms alternate infinite ease-in-out; }

body main h1 > .last { letter-spacing: 0em; }

body main #lp-canvas { width: 100%; height: 100%; box-shadow: 0 1em 2em 0.5em rgba(0, 0, 0, 0.1); }

body main .top-click { text-align: center; letter-spacing: 10px; font-size: 32px; }

@keyframes breathe { 0% { color: white;
    transform: scale(1); }
  100% { color: rgba(226, 255, 157, 0.8);
    transform: scale(0.9); } }
