<main>
  <h1>Fun Facts SMS</h1>
  <p>
    Enter your phone number (including country code) to receive an SMS text.
  </p>
  <form id="phoneNumberForm">
    <label for="phone" class="sr-only">
      Phone Number (with country code)
    </label>
    <input
      type="text"
      name="phone"
      id="phone"
      placeholder="1 555 777 9999"
      autocomplete="off"
    />
    <button type="submit">Submit</button>
  </form>
  <div id="result" class="hidden"></div>
</main>