
  body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0f172a;
  }

  svg {
    max-width: 90vw;
    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
  }

  progress {
    position: absolute;
    top: 72%;
    left: 46%;

  }

  text {
    fill: #ffffff;
    font-family: system-ui, sans-serif;
  }

  .st0{
    fill:#000000;
  }

  .headline {
    font-size: 36px;
    font-weight: 700;
  }

  .btn-rect {
    fill: #38bdf8;
    rx: 20;
    ry: 20;
    transition: fill 0.2s ease, transform 0.2s ease;
  }

  .btn-text {
    fill: #020617;
    font-size: 20px;
    font-weight: 600;
    pointer-events: none; /* click goes to <a> */
  }

  a:hover .btn-rect {
    fill: #7df3fc;
    transform: translateY(-2px);
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(180px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
