<!DOCTYPE html><html data-seo-base-url="https://unstoppabledomains.com" lang="en-us"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, shrink-to-fit=no, user-scalable=0"/><title>thatexplainseverything.com | Unstoppable | Unstoppable</title><meta name="description" content="thatexplainseverything.com — a premium domain name. Visit Unstoppable for domain availability and pricing."/><meta name="twitter:card" content="summary_large_image"/><meta name="twitter:site" content="@unstoppableweb"/><meta property="og:title" content="thatexplainseverything.com | Unstoppable"/><meta property="og:description" content="thatexplainseverything.com — a premium domain name. Visit Unstoppable for domain availability and pricing."/><meta property="og:url" content="https://unstoppabledomains.com/d/thatexplainseverything.com"/><meta property="og:type" content="website"/><meta property="og:image" content="https://storage.googleapis.com/unstoppable-client-assets/images/unstoppable-logos/unstoppable-logo-1200x630.png"/><meta property="og:image:alt" content="Unstoppable"/><meta property="og:image:width" content="1200"/><meta property="og:image:height" content="630"/><meta property="og:site_name" content="Unstoppable"/><link rel="canonical" href="https://unstoppabledomains.com/d/thatexplainseverything.com"/><meta name="robots" content="noindex,nofollow"/><meta name="next-head-count" content="17"/><link rel="preconnect" href="https://cdn.unstoppabledomains.com" crossorigin="anonymous"/><link rel="preconnect" href="https://storage.googleapis.com" crossorigin="anonymous"/><link rel="preload" as="font" type="font/woff2" href="https://storage.googleapis.com/unstoppable-client-assets/fonts/HelveticaNeueLT97BlackCondensed.woff2" crossorigin="anonymous"/><link rel="preload" as="font" type="font/woff2" href="https://storage.googleapis.com/unstoppable-client-assets/fonts/Inter.woff2" crossorigin="anonymous"/><link rel="icon" href="https://storage.googleapis.com/unstoppable-client-assets/images/favicon/favicon-v3.ico" sizes="any"/><link rel="icon" type="image/svg+xml" href="https://storage.googleapis.com/unstoppable-client-assets/images/favicon/icon.svg"/> <link rel="apple-touch-icon" href="https://storage.googleapis.com/unstoppable-client-assets/images/favicon/apple-touch-icon.png"/> <meta name="google-site-verification" content="KwfiT42KimvVllZ5fxSehL0klitLG2Gubvbw7jIKPcA"/><meta http-equiv="Content-type" content="text/html" charSet="UTF-8"/><meta name="theme-color" content="#0d0d0d"/><style>
                body > div#__next ~ img {
                    position: absolute;
                    z-index: -1;
                    pointer-events: none;
                    opacity: 0;
                }
              </style><style>/**
 * CSS Inversion Dark Mode
 *
 * Instead of maintaining per-component dark mode support, this uses the
 * Dark Reader approach: invert all colors via CSS filter, then counter-invert
 * media elements to restore their original appearance.
 *
 * How it works:
 * - `invert(0.95)` on the parent shifts colors toward their inverse
 *   (white→dark grey instead of pure black, for richer backgrounds)
 * - `hue-rotate(180deg)` rotates hues back so blue stays blue, red stays red
 * - Media elements (img, video, canvas) use invert(1) to restore original colors:
 *   invert(1)(invert(0.95)(x)) = 0.05 + 0.9x (~90% contrast, slight brightness reduction)
 * - `data-no-invert` attribute restores non-media elements to original colors
 *
 * Toggle: set `data-theme="dark"` on <html> to activate.
 *
 * ── Native pages: `data-native-page` on <html> ─────────────────────
 * Routes whose visible surfaces are fully tokenized (UI-Kit paletteV2,
 * theme-tokens.css) opt out of the inversion entirely by carrying
 * `data-native-page` on the root element: every rule below is gated on
 * `:not([data-native-page])`, so on those pages dark mode comes purely from
 * the token layer (real dark values, unclamped Display-P3). The attribute is
 * set pre-paint by the _document blocking script for / and /chat (every
 * state, workspace included) and synced at runtime by the page (see
 * ChatShell), which removes it on unmount so filter-regime routes get the
 * inversion back. `[data-native-theme]` regions render identically in both
 * regimes: counter-inverted under the filter, plain tokens without it.
 * The whole file dies with ECW-8577 once every route is native.
 */

/* Native dark scrollbars and form controls apply in both regimes. */
html[data-theme='dark'] {
  color-scheme: dark;
}

/* ── Invert all content ───────────────────────────────────────────── */
/* Apply filter on html (the root element) so that position:fixed and
   position:sticky descendants are never re-anchored. Browsers apply
   filter on the root element at canvas level — it is treated as a
   visual post-process, NOT as an element-level stacking context, so
   it does NOT create a new containing block for fixed/sticky children.
   The default white canvas inverts to ~rgb(13,13,13) via invert(0.95).
   background-color #0d0d0d is set so iOS Safari reads a dark raw value
   for the overscroll bounce area (Safari ignores the filter). */
html[data-theme='dark']:not([data-native-page]) {
  filter: invert(0.95) hue-rotate(180deg);
  background-color: #0d0d0d;
}

/* Safari uses the raw CSS background-color (not the post-filter visual)
   for overscroll bounce and toolbar chrome. Setting body to #0d0d0d gives
   Safari a dark value for those areas. The invert(0.95) filter turns this
   into ~#f2f2f2 visually, but MUI's CssBaseline and page content paint
   over it, so the light flash is not visible in practice. */
html[data-theme='dark']:not([data-native-page]) body {
  background-color: #0d0d0d !important;
}

/* ── Native pages: token-driven canvas, no filter ─────────────────── */
/* The page canvas reads the SAME token in both themes: surface-primary
   (#fbfafa light, #1f1f1f dark) resolves per data-theme on its own; the
   sidebar sits recessed on surface-depth and content paints its own
   surfaces on top. !important because the homepage footer sets an inline
   background on html/body for overscroll parity; on native pages the
   token canvas must win over that inline value in either theme. */
html[data-native-page] {
  background-color: var(--color-surface-primary, #fbfafa) !important;
}

html[data-native-page] body {
  background-color: var(--color-surface-primary, #fbfafa) !important;
}

/* Direct dark scrollbars (values are final: there is no filter to
   pre-invert for). Mirrors the [data-no-invert] block at the bottom. */
html[data-theme='dark'][data-native-page] body * {
  scrollbar-color: #555 #1a1a1a;
}

html[data-theme='dark'][data-native-page] body *::-webkit-scrollbar {
  background: #1a1a1a;
}

html[data-theme='dark'][data-native-page] body *::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 4px;
}

/* Browser autofill on native pages: final dark values. */
html[data-theme='dark'][data-native-page] input:-webkit-autofill,
html[data-theme='dark'][data-native-page] input:-webkit-autofill:hover,
html[data-theme='dark'][data-native-page] input:-webkit-autofill:focus,
html[data-theme='dark'][data-native-page] textarea:-webkit-autofill,
html[data-theme='dark'][data-native-page] select:-webkit-autofill {
  -webkit-text-fill-color: #ffffff !important;
  -webkit-box-shadow: 0 0 0px 1000px #262626 inset !important;
  box-shadow: 0 0 0px 1000px #262626 inset !important;
}

/* ── Native-theme regions (paletteV2) ──────────────────────────────── */
/* Header/footer opt OUT of the global inversion via [data-native-theme] and
   instead read real light/dark colors from UI-Kit paletteV2 tokens
   (theme-tokens.css, var(--color-*)). A descendant cannot truly cancel an
   ancestor's root filter, so we counter-invert the region: invert(1) applied
   on top of the root invert(0.95) nets ~identity, making the region render its
   AUTHORED colors — which here are the native paletteV2 dark values. The
   global per-element helpers (media restore, primary re-invert) would then
   double-apply, so they are neutralized inside the region below.
   Temporary coupling with the inversion filter — removed wholesale once the
   filter is retired app-wide (ECW-8577). */
html[data-theme='dark']:not([data-native-page]) [data-native-theme] {
  filter: invert(1) hue-rotate(180deg);
}
/* Inside a native region the single counter-invert already restores authored
   colors — turn the global helpers off so they don't invert a second time.
   This list mirrors the global media + primary re-invert blocks below
   one-for-one: every element the inversion re-inverts must be neutralized here
   or it would invert twice (triple-invert) inside the region. Keep them in sync
   when either list changes. */
html[data-theme='dark']:not([data-native-page])
  [data-native-theme]
  img:not([data-keep-inverted]),
html[data-theme='dark']:not([data-native-page])
  [data-native-theme]
  video:not([data-keep-inverted]),
html[data-theme='dark']:not([data-native-page])
  [data-native-theme]
  canvas:not([data-keep-inverted]),
html[data-theme='dark']:not([data-native-page])
  [data-native-theme]
  picture:not([data-keep-inverted]),
html[data-theme='dark']:not([data-native-page])
  [data-native-theme]
  svg
  image:not([data-keep-inverted]),
html[data-theme='dark']:not([data-native-page])
  [data-native-theme]
  [data-no-invert],
html[data-theme='dark']:not([data-native-page])
  [data-native-theme]
  .MuiButton-containedPrimary:not(.Mui-disabled),
html[data-theme='dark']:not([data-native-page])
  [data-native-theme]
  .MuiChip-colorPrimary,
html[data-theme='dark']:not([data-native-page])
  [data-native-theme]
  .MuiChip-filledPrimary,
html[data-theme='dark']:not([data-native-page])
  [data-native-theme]
  .MuiChip-outlinedPrimary,
html[data-theme='dark']:not([data-native-page])
  [data-native-theme]
  .MuiIconButton-colorPrimary:not(.Mui-disabled),
html[data-theme='dark']:not([data-native-page])
  [data-native-theme]
  .MuiFab-primary:not(.Mui-disabled),
html[data-theme='dark']:not([data-native-page])
  [data-native-theme]
  .MuiBadge-colorPrimary,
html[data-theme='dark']:not([data-native-page])
  [data-native-theme]
  .MuiLinearProgress-colorPrimary,
html[data-theme='dark']:not([data-native-page])
  [data-native-theme]
  .MuiCircularProgress-colorPrimary {
  filter: none;
}
/* Brand logos authored for a light background (e.g. the black Domaining and UD
   footer logos) can't be expressed as paletteV2 color vars, so they keep using
   the inversion: tag them data-keep-inverted and re-invert here so that, net of
   the region's counter-invert, they still flip to light on dark. */
html[data-theme='dark']:not([data-native-page])
  [data-native-theme]
  [data-keep-inverted] {
  filter: invert(1) hue-rotate(180deg);
}

/* ── Restore media elements to original colors ────────────────────── */
/* Counter-invert images/video/canvas so they appear with original colors.
   invert(1) on parent's invert(0.95) gives 0.05 + 0.9x (~90% contrast,
   slight brightness reduction). Use data-no-invert on non-media elements
   that also need their original colors (e.g., brand components).
   Use data-keep-inverted on images that should stay inverted (e.g.,
   logos with opaque backgrounds that look better inverted on dark bg). */
html[data-theme='dark']:not([data-native-page]) img:not([data-keep-inverted]),
html[data-theme='dark']:not([data-native-page])
  video:not([data-keep-inverted]),
html[data-theme='dark']:not([data-native-page])
  canvas:not([data-keep-inverted]),
html[data-theme='dark']:not([data-native-page])
  picture:not([data-keep-inverted]),
html[data-theme='dark']:not([data-native-page])
  svg
  image:not([data-keep-inverted]),
html[data-theme='dark']:not([data-native-page]) [data-no-invert] {
  filter: invert(1) hue-rotate(180deg);
}

/* Images inside data-keep-inverted containers should stay inverted */
html[data-theme='dark']:not([data-native-page]) [data-keep-inverted] img {
  filter: none;
}

/* ── Un-invert primary-colored elements ────────────────────────────── */
/* The brand blue (#0D67FE) already looks good on dark backgrounds.
   Applying invert(1) on these elements restores their original color:
   invert(1)(invert(0.95)(blue)) ≈ original blue with slight shift.
   Disabled elements (:not(.Mui-disabled)) are excluded — MUI's disabled
   styling (low opacity, muted bg) becomes invisible when counter-inverted
   against the dark background. Leaving them in the inverted color space
   produces a visible muted appearance naturally. */
html[data-theme='dark']:not([data-native-page])
  .MuiButton-containedPrimary:not(.Mui-disabled),
html[data-theme='dark']:not([data-native-page]) .MuiChip-colorPrimary,
html[data-theme='dark']:not([data-native-page]) .MuiChip-filledPrimary,
html[data-theme='dark']:not([data-native-page]) .MuiChip-outlinedPrimary,
html[data-theme='dark']:not([data-native-page])
  .MuiIconButton-colorPrimary:not(.Mui-disabled),
html[data-theme='dark']:not([data-native-page])
  .MuiFab-primary:not(.Mui-disabled),
html[data-theme='dark']:not([data-native-page]) .MuiBadge-colorPrimary,
html[data-theme='dark']:not([data-native-page]) .MuiLinearProgress-colorPrimary,
html[data-theme='dark']:not([data-native-page])
  .MuiCircularProgress-colorPrimary {
  filter: invert(1) hue-rotate(180deg);
}

/* ── Modal backdrop & tooltips ─────────────────────────────────────── */
/* MUI modals render as direct body children (body > div portals), so
   the parent invert(0.95) transforms all colors. The backdrop background
   rgba(0,0,0,0.5) would become rgba(242,242,242,0.5) = near-white.
   Fix: use a pre-inverted value that renders dark after invert(0.95).
     rgba(255,255,255,0.5) → invert(0.95) → rgba(13,13,13,0.5) ≈ near-black ✓
   On native pages the authored value is already correct. */
html[data-theme='dark']:not([data-native-page]) .MuiBackdrop-root {
  background-color: rgba(255, 255, 255, 0.5) !important;
}

/* Tooltips: default dark background rgba(97,97,97) → after invert(0.95)
   becomes rgba(152,152,152) = light gray. Pre-invert to restore a dark tooltip.
     bg  rgb(239,239,239) → invert(0.95) → rgb(38,38,38) ≈ dark ✓
     text black           → invert(0.95) → rgb(229,229,229) ≈ near-white ✓ */
html[data-theme='dark']:not([data-native-page]) .MuiTooltip-tooltip {
  background-color: rgb(239, 239, 239) !important;
  color: #000 !important;
}
html[data-theme='dark']:not([data-native-page]) .MuiTooltip-arrow {
  color: rgb(239, 239, 239) !important;
}

/* ── Snackbar notifications ───────────────────────────────────────── */
/* notistack renders snackbars as fixed-position portals. Counter-invert
   the content card so notifications appear with their original colors
   (success green, error red, etc.) rather than inverted. */
html[data-theme='dark']:not([data-native-page]) .SnackbarItem-contentRoot {
  filter: invert(1) hue-rotate(180deg);
}

/* ── Third-party widgets ──────────────────────────────────────────── */

/* Phone input flag sprite (react-phone-input-2): the flag is a CSS
   background-image div, not an <img>, so our img rule doesn't apply.
   Empirically tuned: invert(0.95) contrast(0.9) matches the page inversion
   level; hue-rotate(-198deg) corrects the effective ~198° hue shift caused
   by invert(0.95) hue-rotate(180deg) on saturated colors. */
html[data-theme='dark']:not([data-native-page]) .react-tel-input .flag {
  filter: invert(0.95) contrast(0.9) hue-rotate(-198deg) !important;
}

/* PayPal buttons render as an iframe with PayPal's own branded styling.
   Counter-invert the container to restore original PayPal colors. */
html[data-theme='dark']:not([data-native-page]) .paypal-buttons {
  filter: invert(1) hue-rotate(180deg);
}

/* ── Browser autofill ─────────────────────────────────────────────── */
/* Browser autofill overrides text/background colors. Pre-invert so
   after parent invert(0.95) the filled value appears light on dark bg:
     text  #000 → invert(0.95) → rgb(242,242,242) ≈ near-white ✓
     bg    #fff → invert(0.95) → rgb(13,13,13)    ≈ near-dark  ✓ */
html[data-theme='dark']:not([data-native-page]) input:-webkit-autofill,
html[data-theme='dark']:not([data-native-page]) input:-webkit-autofill:hover,
html[data-theme='dark']:not([data-native-page]) input:-webkit-autofill:focus,
html[data-theme='dark']:not([data-native-page]) textarea:-webkit-autofill,
html[data-theme='dark']:not([data-native-page]) select:-webkit-autofill {
  -webkit-text-fill-color: #000000 !important;
  -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
  box-shadow: 0 0 0px 1000px #ffffff inset !important;
}

/* ── Fine-tune specific elements ──────────────────────────────────── */

/* Dark scrollbars: elements inside body live inside the invert(0.95)
   filter, so their rendered colors are inverted.
   Use pre-inverted values so after invert(0.95) they render as:
     thumb #b5b5b5 → ~#444  (medium gray)
     track #fefefe → ~#0d0d0d (near black)
   Elements outside the filter (html) inherit color-scheme:dark
   and get native dark scrollbars automatically. */
html[data-theme='dark']:not([data-native-page]) body * {
  scrollbar-color: #b5b5b5 #fefefe;
}

html[data-theme='dark']:not([data-native-page]) body *::-webkit-scrollbar {
  background: #fefefe;
}

html[data-theme='dark']:not([data-native-page])
  body
  *::-webkit-scrollbar-thumb {
  background: #b5b5b5;
  border-radius: 4px;
}

/* Scrollbars inside counter-inverted [data-no-invert] elements need
   direct dark colors (not pre-inverted), because the counter-invert
   filter undoes the parent inversion — so these elements render with
   their original colors, meaning scrollbar values must be final. */
html[data-theme='dark']:not([data-native-page]) [data-no-invert] * {
  scrollbar-color: #555 #1a1a1a;
}

html[data-theme='dark']:not([data-native-page])
  [data-no-invert]
  *::-webkit-scrollbar {
  background: #1a1a1a;
}

html[data-theme='dark']:not([data-native-page])
  [data-no-invert]
  *::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 4px;
}
</style><noscript>
<img height="1" width="1" style="display:none" 
       src="https://www.facebook.com/tr?id=1756642311773381&ev=PageView&noscript=1"/>
</noscript><link rel="preload" href="/_next/static/css/29ab69abd75cf854.css" as="style"/><link rel="stylesheet" href="/_next/static/css/29ab69abd75cf854.css" data-n-g=""/><noscript data-n-css=""></noscript><script defer="" nomodule="" src="/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js"></script><script src="/_next/static/chunks/webpack-b69d908e34269ff6.js" defer=""></script><script src="/_next/static/chunks/framework-cf242fd6ec8dbf98.js" defer=""></script><script src="/_next/static/chunks/main-39ccd8f19bb5688b.js" defer=""></script><script src="/_next/static/chunks/pages/_app-297fc600c3abfbfb.js" defer=""></script><script src="/_next/static/chunks/38579-64c2bf6bdb4a78a8.js" defer=""></script><script src="/_next/static/chunks/42678-82696eff10593e3e.js" defer=""></script><script src="/_next/static/chunks/26684-fd96dc93e1157730.js" defer=""></script><script src="/_next/static/chunks/55497-dcd3b66d6b0f2d56.js" defer=""></script><script src="/_next/static/chunks/91345-8cdd88b75978f763.js" defer=""></script><script src="/_next/static/chunks/67426-96cda8b5176c00ae.js" defer=""></script><script src="/_next/static/chunks/24512-a0b3c9a563e02793.js" defer=""></script><script src="/_next/static/chunks/93270-f846346fb9662d97.js" defer=""></script><script src="/_next/static/chunks/1775-1dd8142c6ac725d0.js" defer=""></script><script src="/_next/static/chunks/10950-f77d449563fd8788.js" defer=""></script><script src="/_next/static/chunks/18525-b4ff84ad77134255.js" defer=""></script><script src="/_next/static/chunks/87732-f6e30e146ef968c7.js" defer=""></script><script src="/_next/static/chunks/32162-d1614881a72b047b.js" defer=""></script><script src="/_next/static/chunks/8218-62f9aeba6d773f5c.js" defer=""></script><script src="/_next/static/chunks/57618-8d423c6a09de8f2f.js" defer=""></script><script src="/_next/static/chunks/43682-67cd62afd97f7538.js" defer=""></script><script src="/_next/static/chunks/pages/d/%5Bdomain%5D-795dbe299ebdda4c.js" defer=""></script><script src="/_next/static/PbNITAG6TRlqHJqc4ErJA/_buildManifest.js" defer=""></script><script src="/_next/static/PbNITAG6TRlqHJqc4ErJA/_ssgManifest.js" defer=""></script><style data-emotion="css-global l4tr92">html{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;box-sizing:border-box;-webkit-text-size-adjust:100%;-webkit-print-color-scheme:light;color-scheme:light;}*,*::before,*::after{box-sizing:inherit;}strong,b{font-weight:700;}body{margin:0;color:rgba(0, 0, 0, 0.87);font-family:'Inter',sans-serif;font-weight:400;font-size:1rem;line-height:1.5;background-color:#fff;}@media print{body{background-color:#fff;}}body::backdrop{background-color:#fff;}</style><style data-emotion="css-global 1ubrepq">.grecaptcha-badge{visibility:hidden;}</style><style data-emotion="css 1xkga6r-pageContainer 1txjfg3-contentWrapper 1hyopej-mainContent csc6lz-header 14y9dhp-headerNavContainer sg6q1z-rightNavContainer ju6q8a-trustpilotContainer god6r8-leftNavContainer 1gi9nv0-footer p1mkbt-detailsCardWrapper 18hkrvf-footerWrapper 7v3fw8-desktopLogo-logo 1mirpeq-link-homeLink a9hhse-mobileLogo-logo 11vxsh7-container mkdaj3-domainNameContainer t6drj9-domainName mwd85m-mutedText 1gzh9l4-link lhbmwc-container mwtt9h-detailsContainer 15kw89x-detailContainer 1ckiuo7-iconContainer 1nf4378-icon 12ayqew-detailText a0nojq">.css-1xkga6r-pageContainer{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;min-height:100vh;background-color:#fff;}.css-1txjfg3-contentWrapper{-webkit-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;-webkit-justify-content:space-evenly;justify-content:space-evenly;}@media (max-width:959.95px){.css-1txjfg3-contentWrapper{padding-top:24px;padding-bottom:24px;}}.css-1hyopej-mainContent{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;}.css-csc6lz-header{background-color:transparent;height:inherit;margin-bottom:24px;}@media (max-width:959.95px){.css-csc6lz-header{margin-left:auto;margin-right:auto;padding-left:20px;padding-right:20px;width:100%;background-color:inherit;max-width:1256px;margin:0;}@media (max-width:959.95px){.css-csc6lz-header{margin-top:16px;}}}.css-14y9dhp-headerNavContainer{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;height:inherit;max-width:1420px;margin-left:20px;margin-top:16px;}@media (max-width:959.95px){.css-14y9dhp-headerNavContainer{margin-left:0;margin-top:0;}}@media (min-width: 1420px){.css-14y9dhp-headerNavContainer{margin-left:auto;margin-right:auto;}}.css-sg6q1z-rightNavContainer{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:16px;}.css-ju6q8a-trustpilotContainer{margin-top:8px;color:rgba(0, 0, 0, 0.87);}.css-ju6q8a-trustpilotContainer *{color:rgba(0, 0, 0, 0.87);}.css-god6r8-leftNavContainer{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}.css-1gi9nv0-footer{max-width:1420px;padding-left:20px;}@media (max-width:959.95px){.css-1gi9nv0-footer{margin-left:auto;margin-right:auto;padding-left:20px;padding-right:20px;width:100%;background-color:inherit;max-width:1256px;margin:0;}@media (max-width:959.95px){.css-1gi9nv0-footer{margin-top:16px;}}}@media (min-width: 1420px){.css-1gi9nv0-footer{margin-left:auto;margin-right:auto;}}.css-p1mkbt-detailsCardWrapper{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}.css-18hkrvf-footerWrapper{color:rgba(0, 0, 0, 0.6);margin-top:24px;margin-bottom:24px;}.css-7v3fw8-desktopLogo-logo{width:222px;height:48px;}@media (max-width:1079.95px){.css-7v3fw8-desktopLogo-logo{display:none;}}.css-7v3fw8-desktopLogo-logo.css-7v3fw8-desktopLogo-logo{max-width:155px;}.css-1mirpeq-link-homeLink{margin:0;word-break:break-word;color:#0D67FE;-webkit-text-decoration:underline;text-decoration:underline;text-decoration-color:rgba(13, 103, 254, 0.4);font-size:1rem;color:#0D67FE;font-weight:600;-webkit-text-decoration:none;text-decoration:none;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;cursor:pointer;width:100%;overflow:hidden;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}.css-1mirpeq-link-homeLink:hover{text-decoration-color:inherit;}.css-1mirpeq-link-homeLink:hover{-webkit-text-decoration:underline;text-decoration:underline;}.css-a9hhse-mobileLogo-logo{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:1em;height:1em;display:inline-block;fill:currentColor;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-transition:fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;font-size:1.5rem;width:40px;height:40px;}@media (min-width:1080px){.css-a9hhse-mobileLogo-logo{display:none;}}.css-a9hhse-mobileLogo-logo.css-a9hhse-mobileLogo-logo{max-width:155px;}.css-11vxsh7-container{margin-left:auto;margin-right:auto;padding-left:20px;padding-right:20px;width:100%;background-color:inherit;max-width:1256px;}@media (max-width:959.95px){.css-11vxsh7-container{padding-left:0;padding-right:0;}}@media (max-width:959.95px){.css-mkdaj3-domainNameContainer{margin:0px 16px;text-align:center;}}.css-t6drj9-domainName{margin:0;font-weight:700;font-family:'Inter',sans-serif;font-size:2rem;line-height:1.167;word-break:break-word;margin-top:8px;font-size:55px;line-height:72px;font-weight:600;color:rgba(0, 0, 0, 0.87);}@media (min-width:600px){.css-t6drj9-domainName{font-size:2.5707rem;}}@media (min-width:960px){.css-t6drj9-domainName{font-size:2.7849rem;}}@media (min-width:1280px){.css-t6drj9-domainName{font-size:2.9991rem;}}@media (max-width:959.95px){.css-t6drj9-domainName{font-size:32px;line-height:40px;}}.css-mwd85m-mutedText{margin:0;font-weight:700;font-family:'Inter',sans-serif;font-size:1.125rem;line-height:1.6;word-break:break-word;margin-top:16px;color:rgba(0, 0, 0, 0.38);}@media (min-width:600px){.css-mwd85m-mutedText{font-size:1.25rem;}}@media (min-width:960px){.css-mwd85m-mutedText{font-size:1.25rem;}}@media (min-width:1280px){.css-mwd85m-mutedText{font-size:1.25rem;}}@media (min-width:0px){.css-mwd85m-mutedText{font-size:1.125rem;line-height:1.5;}}.css-1gzh9l4-link{margin:0;word-break:break-word;color:#0D67FE;-webkit-text-decoration:underline;text-decoration:underline;text-decoration-color:rgba(13, 103, 254, 0.4);font-size:1rem;color:#0D67FE;font-weight:600;-webkit-text-decoration:none;text-decoration:none;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;position:relative;box-sizing:border-box;-webkit-tap-highlight-color:transparent;background-color:transparent;outline:0;border:0;margin:0;border-radius:0;padding:0;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;-moz-appearance:none;-webkit-appearance:none;-webkit-text-decoration:none;text-decoration:none;color:inherit;text-transform:none;font-family:'Inter',sans-serif;font-weight:600;font-size:0.875rem;line-height:1.75;min-width:64px;padding:6px 16px;border-radius:8px;-webkit-transition:background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;color:#fff;background-color:#0D67FE;box-shadow:0px 3px 1px -2px rgba(0,0,0,0.2),0px 2px 2px 0px rgba(0,0,0,0.14),0px 1px 5px 0px rgba(0,0,0,0.12);font-weight:700;font-size:1rem;word-break:normal;margin-top:24px;}.css-1gzh9l4-link:hover{text-decoration-color:inherit;}.css-1gzh9l4-link:hover{-webkit-text-decoration:underline;text-decoration:underline;}.css-1gzh9l4-link::-moz-focus-inner{border-style:none;}.css-1gzh9l4-link.Mui-disabled{pointer-events:none;cursor:default;}@media print{.css-1gzh9l4-link{-webkit-print-color-adjust:exact;color-adjust:exact;}}.css-1gzh9l4-link:hover{-webkit-text-decoration:none;text-decoration:none;background-color:#0546B7;box-shadow:0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12);}@media (hover: none){.css-1gzh9l4-link:hover{background-color:#0D67FE;}}.css-1gzh9l4-link:active{box-shadow:0px 5px 5px -3px rgba(0,0,0,0.2),0px 8px 10px 1px rgba(0,0,0,0.14),0px 3px 14px 2px rgba(0,0,0,0.12);}.css-1gzh9l4-link.Mui-focusVisible{box-shadow:0px 3px 5px -1px rgba(0,0,0,0.2),0px 6px 10px 0px rgba(0,0,0,0.14),0px 1px 18px 0px rgba(0,0,0,0.12);}.css-1gzh9l4-link.Mui-disabled{color:rgba(0, 0, 0, 0.26);box-shadow:none;background-color:rgba(0, 0, 0, 0.12);}.css-lhbmwc-container{margin-left:auto;margin-right:auto;padding-left:20px;padding-right:20px;width:100%;background-color:inherit;max-width:1256px;padding:0px 80px;}@media (max-width:959.95px){.css-lhbmwc-container{margin-left:0;margin-right:0;padding:0px 8px;}}.css-mwtt9h-detailsContainer{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;-webkit-justify-content:space-evenly;justify-content:space-evenly;}@media (max-width:599.95px){.css-mwtt9h-detailsContainer{display:grid;grid-template-columns:1fr 1fr;grid-template-rows:1fr 1fr;gap:8px;}}.css-15kw89x-detailContainer{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-flex:1;-ms-flex:1;flex:1;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}@media (max-width:599.95px){.css-15kw89x-detailContainer{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;padding:8px 24px;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;gap:8px;}}.css-1ckiuo7-iconContainer{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;margin-bottom:16px;}@media (max-width:599.95px){.css-1ckiuo7-iconContainer{margin-bottom:4px;}}.css-1nf4378-icon{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:1em;height:1em;display:inline-block;fill:currentColor;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-transition:fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;font-size:1.5rem;font-size:38px;color:#0D67FE;}@media (max-width:599.95px){.css-1nf4378-icon{font-size:24px;}}.css-12ayqew-detailText{margin:0;font-family:'Inter',sans-serif;font-weight:400;font-size:1rem;line-height:1.75;word-break:break-word;text-align:center;font-weight:600;color:rgba(0, 0, 0, 0.87);}@media (max-width:599.95px){.css-12ayqew-detailText{text-align:center;font-size:0.875rem;}}.css-a0nojq{margin:0;font-family:'Inter',sans-serif;font-weight:400;font-size:0.875rem;line-height:1.43;word-break:break-word;font-weight:600;}@media (max-width:599.95px){.css-a0nojq{font-size:0.825rem;}}</style></head><body><script>(function(){try{var m=localStorage.getItem('theme');var d=(m==='dark')||((m==null||m==='system')&&window.matchMedia('(prefers-color-scheme:dark)').matches);if(d){document.documentElement.setAttribute('data-theme','dark')}else{var tc=document.querySelector('meta[name="theme-color"]');if(tc)tc.setAttribute('content','#ffffff')}var p=location.pathname.replace(/\/+$/,'')||'/';if(p==='/'||p==='/chat'){document.documentElement.setAttribute('data-native-page','')}}catch(e){}})()</script><noscript>
<iframe src="/beo.html?id=GTM-TXJK8HJ"
height="0" width="0" style="display:none;visibility:hidden"></iframe>
</noscript><div id="__next"><div class="css-1xkga6r-pageContainer"><div class="css-csc6lz-header"><div class="css-14y9dhp-headerNavContainer"><div class="css-god6r8-leftNavContainer"><a class="MuiTypography-root MuiTypography-inherit MuiLink-root MuiLink-underlineAlways css-1mirpeq-link-homeLink" aria-label="home page" data-no-invert="true" href="/"><svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-a9hhse-mobileLogo-logo" focusable="false" aria-hidden="true" viewBox="0 0 40 40"><path d="M38.3333 3.90803V16.5517L1.66666 31.4942L38.3333 3.90803Z" fill="#00C9FF"></path><path d="M31.4583 3.33333V25.1724C31.4583 31.5203 26.3281 36.6667 20 36.6667C13.6719 36.6667 8.54166 31.5203 8.54166 25.1724V15.977L15.4167 12.1839V25.1724C15.4167 26.2394 15.8392 27.2626 16.5913 28.0171C17.3434 28.7716 18.3635 29.1954 19.4271 29.1954C20.4907 29.1954 21.5108 28.7716 22.2629 28.0171C23.015 27.2626 23.4375 26.2394 23.4375 25.1724V7.75862L31.4583 3.33333Z" fill="#0D67FE"></path></svg><svg viewBox="0 0 111 24" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="css-7v3fw8-desktopLogo-logo"><path d="M22 2.34473V9.93093L0 18.8965L22 2.34473Z" fill="#00C9FF"></path><path d="M17.875 2V15.1034C17.875 18.9122 14.7968 22 11 22C7.20315 22 4.125 18.9122 4.125 15.1034V9.58621L8.25 7.31035V15.1034C8.25 15.7436 8.50351 16.3576 8.95477 16.8103C9.40603 17.2629 10.0181 17.5172 10.6562 17.5172C11.2944 17.5172 11.9065 17.2629 12.3577 16.8103C12.809 16.3576 13.0625 15.7436 13.0625 15.1034V4.65517L17.875 2Z" fill="#0D67FE"></path><g transform="translate(-0.7000000000000028 -1.250000000000001) scale(1.1)"><path d="M31.4875 8.79712V12.8551C31.4875 14.2161 30.7294 14.9361 29.7838 14.9361C29.0134 14.9361 28.4102 14.4783 28.4102 13.2338V8.79712H27V13.3379C27 15.0818 27.913 16.2055 29.4129 16.2055C29.8372 16.2099 30.2547 16.0959 30.6203 15.8759C30.9858 15.6559 31.2857 15.3381 31.4875 14.9569H31.5119V15.9933H32.8977V8.79712H31.4875Z" fill="#0D67FE"></path><path d="M37.6419 8.58863C37.2077 8.5813 36.7796 8.69335 36.4024 8.91302C36.0253 9.1327 35.7129 9.45192 35.498 9.83723H35.4736V8.79673H34.0878V15.997H35.498V11.9391C35.498 10.5781 36.2806 9.85804 37.2669 9.85804C38.0821 9.85804 38.7179 10.3159 38.7179 11.5603V15.997H40.1281V11.4438C40.1281 9.71237 39.1948 8.58863 37.6419 8.58863Z" fill="#0D67FE"></path><path d="M44.3181 11.6361H44.0491C42.8264 11.6361 42.5859 11.4155 42.5859 10.8536C42.5859 10.2918 43.075 9.82977 43.9839 9.82977C44.158 9.8158 44.333 9.83919 44.4977 9.89844C44.6624 9.95769 44.8132 10.0515 44.9402 10.1738C45.0673 10.2961 45.1679 10.4442 45.2355 10.6086C45.3032 10.773 45.3364 10.95 45.333 11.1283H46.8044C46.7025 9.67578 45.6509 8.58949 43.9839 8.58949C42.0764 8.58949 41.1309 9.73821 41.1309 10.8536C41.1309 12.148 42.1824 12.893 43.503 12.893H43.8861C45.1088 12.893 45.4757 13.1844 45.4757 13.8753C45.4757 14.4912 44.8602 14.9615 43.9391 14.9615C43.5676 14.982 43.2033 14.8518 42.9254 14.5992C42.6475 14.3467 42.4786 13.9922 42.4555 13.6131H40.9841C41.0738 15.1072 42.2762 16.206 43.9187 16.206C45.8914 16.206 46.9185 15.0406 46.9185 13.8753C46.9389 12.5393 45.9077 11.6361 44.3181 11.6361Z" fill="#0D67FE"></path><path d="M51.3688 10.0545V8.80587H49.4573V7.80698H48.0511V8.79754H46.8977V10.0461H48.0511V14.0625C48.0511 15.411 48.744 15.9895 50.0524 15.9895H51.3729V14.7409H50.1787C50.0805 14.7468 49.9823 14.7309 49.8907 14.6943C49.7991 14.6577 49.7164 14.6012 49.6482 14.5289C49.58 14.4565 49.528 14.3699 49.4958 14.275C49.4635 14.1801 49.4518 14.0792 49.4614 13.9793V10.0545H51.3688Z" fill="#0D67FE"></path><path d="M55.343 8.58949C53.3662 8.58949 51.8052 9.95047 51.8052 12.3977C51.8052 14.845 53.3662 16.206 55.343 16.206C57.3198 16.206 58.8808 14.8325 58.8808 12.3977C58.8808 9.96296 57.3157 8.58949 55.343 8.58949ZM55.343 14.9615C54.1895 14.9615 53.2643 14.1291 53.2643 12.3977C53.2643 10.6663 54.1895 9.81729 55.343 9.82977C56.4964 9.84226 57.4176 10.6414 57.4176 12.3977C57.4176 14.1541 56.4964 14.9491 55.343 14.9615Z" fill="#0D67FE"></path><path d="M63.6494 8.58905C63.1699 8.57772 62.6957 8.69327 62.2729 8.92446C61.8501 9.15565 61.4931 9.49462 61.2365 9.90841H61.2039C61.2284 9.62123 61.2284 9.41313 61.2284 9.15092V8.79715H59.8182V18.5H61.2284V15.6811C61.2284 15.4064 61.2284 15.1859 61.2039 14.882H61.2284C61.4799 15.3028 61.837 15.6474 62.2626 15.8801C62.6882 16.1127 63.167 16.2251 63.6494 16.2056C65.3775 16.2056 66.91 14.8571 66.91 12.3557C66.91 9.8543 65.3816 8.58905 63.6494 8.58905ZM63.2907 14.9611C61.9824 14.9611 61.2243 13.8124 61.2243 12.3432C61.2243 10.9572 61.9824 9.84598 63.2907 9.84598C64.5991 9.84598 65.4183 10.8574 65.4183 12.3723C65.4183 13.8873 64.5746 14.9736 63.2948 14.9611H63.2907Z" fill="#0D67FE"></path><path d="M71.699 8.58905C71.2195 8.57772 70.7453 8.69327 70.3225 8.92446C69.8997 9.15565 69.5427 9.49462 69.2861 9.90841H69.2617C69.2861 9.62123 69.2861 9.41313 69.2861 9.15092V8.79715H67.8759V18.5H69.2861V15.6811C69.2861 15.4064 69.2861 15.1859 69.2617 14.882H69.2861C69.537 15.3016 69.8928 15.6453 70.3168 15.8779C70.7409 16.1105 71.218 16.2236 71.699 16.2056C73.4272 16.2056 74.9393 14.8571 74.9393 12.3557C74.9393 9.8543 73.4312 8.58905 71.699 8.58905ZM71.3403 14.9611C70.032 14.9611 69.2739 13.8124 69.2739 12.3432C69.2739 10.9572 70.032 9.84598 71.3403 9.84598C72.6487 9.84598 73.4679 10.8574 73.4679 12.3723C73.4679 13.8873 72.6161 14.9736 71.3403 14.9611Z" fill="#0D67FE"></path><path d="M82.1943 14.741C82.0027 14.741 81.913 14.6203 81.913 14.3872V11.2199C81.913 9.70075 81.1957 8.58949 79.0803 8.58949C77.0424 8.58949 76.0928 9.63416 75.9909 11.1283H77.4011C77.4908 10.2959 78.1185 9.82977 79.0803 9.82977C79.8955 9.82977 80.4661 10.2002 80.4661 10.7746C80.4661 11.2449 80.1441 11.532 79.0926 11.532H78.5301C76.8509 11.532 75.7219 12.2271 75.7219 13.8128C75.7219 15.4776 76.912 16.231 78.31 16.231C79.3493 16.231 80.2338 15.7607 80.5802 14.7534C80.6169 15.486 81.0938 16.0021 81.9905 16.0021H82.8056V14.7534L82.1943 14.741ZM80.5028 12.6599C80.5028 14.2831 79.6428 14.9865 78.5423 14.9865C77.5804 14.9865 77.1973 14.4122 77.1973 13.8253C77.1973 13.2385 77.5275 12.8015 78.5546 12.8015H78.7584C79.7447 12.8015 80.3601 12.4477 80.4906 11.8317L80.5028 12.6599Z" fill="#0D67FE"></path><path d="M87.4887 8.58934C87.0098 8.57791 86.5361 8.69345 86.1139 8.92469C85.6918 9.15592 85.3355 9.49495 85.0799 9.9087H85.0514C85.0747 9.65694 85.0842 9.40405 85.0799 9.15121V6.5H83.6697V15.9977H85.0799V15.6814C85.0841 15.4147 85.0746 15.148 85.0514 14.8823H85.0799C85.3301 15.3015 85.6851 15.6451 86.1085 15.8777C86.5319 16.1103 87.0083 16.2236 87.4887 16.2058C89.2209 16.2058 90.7494 14.8573 90.7494 12.356C90.7494 9.85459 89.2209 8.58934 87.4887 8.58934ZM87.13 14.9614C85.8217 14.9614 85.0677 13.8127 85.0677 12.3435C85.0677 10.9575 85.8217 9.84627 87.13 9.84627C88.4384 9.84627 89.2576 10.8576 89.2576 12.3726C89.2576 13.8876 88.4098 14.9739 87.13 14.9614Z" fill="#0D67FE"></path><path d="M91.6297 6.5V15.9977H93.0399V6.5H91.6297Z" fill="#0D67FE"></path><path d="M101 11.7443C101 9.93799 99.5898 8.58949 97.666 8.58949C95.6281 8.58949 94.1934 10.0129 94.1934 12.3977C94.1934 14.6869 95.5873 16.206 97.666 16.206C99.3697 16.206 100.641 15.1863 100.927 13.7837H99.3901C99.2592 14.141 99.0214 14.4472 98.7105 14.6586C98.3995 14.8701 98.0312 14.9761 97.6578 14.9615C96.6063 14.9615 95.836 14.1916 95.6688 12.9097H100.992L101 11.7443ZM95.7015 11.6236C95.7592 11.1302 95.9916 10.6755 96.355 10.3451C96.7184 10.0146 97.1876 9.83135 97.6741 9.82977C98.1557 9.82718 98.6203 10.0107 98.9749 10.3434C99.3294 10.6761 99.5476 11.1334 99.5857 11.6236H95.7015Z" fill="#0D67FE"></path></g></svg></a></div><div class="css-sg6q1z-rightNavContainer"><div class="trustpilot-widget css-ju6q8a-trustpilotContainer" data-locale="en-US" data-template-id="5419b637fa0340045cd0c936" data-businessunit-id="600ee481ba7c3600012432fa" data-style-height="20px" data-style-width="100%" data-theme="light" data-token="8f156fb0-52ee-474b-836b-e64e31fa3f6c"><a href="https://www.trustpilot.com/review/unstoppabledomains.com" target="_blank" rel="noopener noreferrer">Trustpilot</a></div></div></div></div><div class="css-1txjfg3-contentWrapper"><div class="css-1hyopej-mainContent"><div class="css-11vxsh7-container"><div class="css-mkdaj3-domainNameContainer"><h3 class="MuiTypography-root MuiTypography-h3 css-t6drj9-domainName">thatexplainseverything.com</h3><h6 class="MuiTypography-root MuiTypography-h6 css-mwd85m-mutedText">is not available for sale.</h6><a class="MuiTypography-root MuiTypography-inherit MuiLink-root MuiLink-underlineAlways MuiButtonBase-root MuiButton-root MuiButton-contained MuiButton-containedPrimary MuiButton-sizeMedium MuiButton-containedSizeMedium css-1gzh9l4-link" tabindex="0" href="/marketplace?view=search&amp;searchTerm=thatexplainseverything&amp;searchRef=lander">Search domains</a></div></div></div><div class="css-p1mkbt-detailsCardWrapper"><div class="css-lhbmwc-container"><div class="css-mwtt9h-detailsContainer"><div class="css-15kw89x-detailContainer"><div class="css-1ckiuo7-iconContainer"><svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1nf4378-icon" focusable="false" aria-hidden="true" viewBox="0 0 40 32" width="40" height="32"><g fill="currentColor"><path d="M6.8 27H3.9v.9h.8V31H4v1h2.9v-1H6V28h.8V27ZM11.5 27l-1 .1a2.1 2.1 0 0 0-1.3 1.3 3 3 0 0 0-.2 1c0 .5 0 .8.2 1.2a2.1 2.1 0 0 0 1.3 1.2l1 .2a3.5 3.5 0 0 0 1.4-.3l.3-.1v-1.2h-.1a5.5 5.5 0 0 1-.6.4 1.7 1.7 0 0 1-.8.3l-.5-.1a1.2 1.2 0 0 1-.8-.8 2 2 0 0 1-.1-.7l.1-.8.3-.5.5-.2a1.5 1.5 0 0 1 1 0 2.1 2.1 0 0 1 .6.3l.3.2h.1v-1.2a6.5 6.5 0 0 0-.7-.3 3.9 3.9 0 0 0-1 0ZM18.3 27h-1.5L15 32h1.3l.3-1h1.8l.4 1H20l-1.8-5ZM17 30l.5-1.7.6 1.7H17ZM26.7 27h-1.2v2.8L23.7 27h-1.5v5h1.2v-3.4l2 3.3h1.3V27ZM33.8 27h-1.2v2.8L31 27h-1.5v5h1.1v-3.4l2 3.3h1.3V27ZM20.3 0c-.7 0-1.5 0-2.3.2-1.2.3-2.4 1-3.5 1.5-3.7 1.9-6 5.7-5.7 9.8l1.8-.5c-.2-2.9.6-5.5 2.4-7.6a39.4 39.4 0 0 0 7 16l1 .1h.9c-1.3-1.3-2.3-2.7-3.3-4 1.6-.8 3.1-1.5 4.5-2.5l-.5-1.4c-1.5 1.1-3 2.1-4.6 2.8-.8-1.1-1.4-2.3-2-3.5 1.7-.8 3.3-1.7 4.9-2.8L20 6.6c-1.5 1.1-3 2.2-4.5 3h-.2c-1-2-1.7-4.1-2.3-6.3.6-.6 1.1-1.2 1.7-1.6l1.8-.5c4.4 5 7.2 10.5 8.8 16.6.4-.4.8-.8.9-1.4l-1-2.5c-.1-.6-.5-1.2-.7-1.8 1.2-.8 2.3-1.7 3.4-2.8 0-.7-.2-1.4-.6-2a33 33 0 0 1-3.6 3.3l-2-3.2c1.3-.9 2.5-2 3.6-3.2-.4-.5-1-1-1.5-1.2l-3 3a46.6 46.6 0 0 0-4.2-4.8 9.4 9.4 0 0 1 4 0c3.7.7 7.2 4.2 7.8 7.9.7 4-.7 7.8-4 10.3-1.2.4-2.5.6-3.7.6-2.7 0-5.4-1-7.2-3l3.7-1-.6-1a28.8 28.8 0 0 1-12.2 2.1 31.1 31.1 0 0 0 6.6.2 9.6 9.6 0 0 0 7.8 3.8c2 0 3.9-.6 5.4-1.6a10.3 10.3 0 0 0 5.2-13.8l-.7-1.2c-2-3-5-4.5-8.4-4.5Z"></path><path d="M14.3 10.2a27 27 0 0 1-8.8 2.5l3.4-.1c.2 1.3.6 2.6 1.4 3.7l2.2-.5c-.7-.9-1.1-1.8-1.5-2.8 0-.3-.2-.5 0-.8 1.3-.2 2.5-.5 3.7-1l-.4-1ZM20 24c-6.8 0-13.7.6-20 2a180 180 0 0 1 40 0c-6.2-1.4-13.1-2-20-2Z"></path></g></svg></div><h6 class="MuiTypography-root MuiTypography-subtitle1 css-12ayqew-detailText">ICANN Accredited</h6></div><div class="css-15kw89x-detailContainer"><div class="css-1ckiuo7-iconContainer"><svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1nf4378-icon" focusable="false" aria-hidden="true" viewBox="0 0 32 32" width="32" height="32"><path stroke="currentColor" stroke-linecap="square" stroke-linejoin="round" stroke-width="2.5" fill="none" d="M26.7 9.6c0-1.2-.8-2.2-1.8-2.6l-8-2.7c-.6-.2-1.2-.2-1.8 0L7.1 7c-1 .4-1.8 1.4-1.8 2.6v6.3c0 6.6 5.4 9.4 10.7 12.3 5.3-2.9 10.7-5.7 10.7-12.3V9.6Z"></path></svg></div><h6 class="MuiTypography-root MuiTypography-subtitle1 css-12ayqew-detailText">Money Back Guarantee</h6></div><div class="css-15kw89x-detailContainer"><div class="css-1ckiuo7-iconContainer"><svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1nf4378-icon" focusable="false" aria-hidden="true" viewBox="0 0 32 32" width="32" height="32"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.5" fill="none" d="M7 10.7h1.3m16 10.6h1.4M3 22.7V9.3C3 8 4.2 6.7 5.7 6.7H27c1.5 0 2.7 1.2 2.7 2.6v13.4c0 1.4-1.2 2.6-2.7 2.6H5.7A2.7 2.7 0 0 1 3 22.7ZM19 16a2.7 2.7 0 1 1-5.3 0 2.7 2.7 0 0 1 5.3 0Z"></path></svg></div><h6 class="MuiTypography-root MuiTypography-subtitle1 css-12ayqew-detailText">Secure Payments</h6></div><div class="css-15kw89x-detailContainer"><div class="css-1ckiuo7-iconContainer"><svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1nf4378-icon" focusable="false" aria-hidden="true" viewBox="0 0 32 32" width="32" height="32"><path stroke="currentColor" stroke-linejoin="round" stroke-width="2.5" fill="none" d="M29 15.3 18.8 5.6a1 1 0 0 0-1.7.7v4.4c0 .3-.3.6-.7.6-10.6.2-13.8 4.1-14 14.8 0 .1.2.2.3 0 1.8-3.5 3.5-5.4 13.7-5.4.4 0 .7.3.7.6v4.4a1 1 0 0 0 1.7.7L29 16.7c.4-.4.4-1 0-1.4Z"></path></svg></div><h6 class="MuiTypography-root MuiTypography-subtitle1 css-12ayqew-detailText">Fast &amp; Easy Transfers</h6></div></div></div></div></div><div class="css-18hkrvf-footerWrapper"><footer class="css-1gi9nv0-footer"><p class="MuiTypography-root MuiTypography-body2 css-a0nojq">Copyright © Unstoppable Domains Inc. All rights reserved.</p></footer></div></div></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"domain":"thatexplainseverything.com","seoData":{"domainName":"thatexplainseverything.com","domainLabel":"thatexplainseverything","domainExtension":"com","isListed":false,"price":null,"leaseToOwnMonthlyPrice":null,"leaseToOwnOptions":null,"isRegistered":true,"domainDisplayName":null,"isOfferFeatureEnabled":null,"minOfferAmountInCents":null},"reqHost":"production-client-wnjctwcyaa-uc.a.run.app"},"__N_SSP":true},"page":"/d/[domain]","query":{"domain":"thatexplainseverything.com"},"buildId":"PbNITAG6TRlqHJqc4ErJA","isFallback":false,"gssp":true,"locale":"en-us","locales":["en-us","zh-cn","es-es","pt-br","ja-jp","fr-fr","ar-eg"],"defaultLocale":"en-us","scriptLoader":[]}</script></body></html>