diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 0000000..800d946 --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,45 @@ +# AGENTS.md + +## What this is + +Static HTML/CSS/JS website. No build tools, no npm, no frameworks, no templating. Every page is a standalone `.html` file at the root, sharing `css/style.css` and `js/main.js`. + +## Core constraints + +- **Factual accuracy is critical.** All real-world claims (dates, numbers, patent numbers, scientific facts) must be verifiable. When adding or editing content, verify specific claims — especially patent numbers, statistics, and historical details. Past sessions found 80+ factual errors across pages; assume any new content carries the same risk. +- **`about.html` contains fictional lore** (site "founded in 1999 by librarian Marguerite Calef"). This is intentional. Do not "correct" it. +- **Background must be `#ffffff`** (pure white), not cream or off-white. The owner has clipart/images that float on white backgrounds and look wrong on any other color. +- **No comments in code** unless explicitly requested. + +## Style / aesthetic + +Late-90s/early-2000s "hidden gem" website styled like a DK reference book: +- Georgia / Times New Roman serif fonts +- Images with drop shadows (`box-shadow`) +- Colored section bars (each topic has a distinct color) +- Fake visitor counter (localStorage-based), "Best viewed at 1024×768" footer, "Last updated" timestamp +- Konami code easter egg, double-click title reveals hidden text (``), console tips +- **Clipart decorations** — transparent PNGs from `img/` folder placed whimsically throughout articles using CSS classes: `.clipart` (centered), `.clipart-left` / `.clipart-right` (floating beside text), `.clipart-section` (top of page), `.clipart-divider` (between sections), `.clipart-inline` (within text). Clipart should feel like 90s web decoration — small, scattered, thematically matched to article content. + +## Known issues + +- **Saluting Device patent (US 656,278, 1900)** on `inventions.html` was NOT verified. It may be incorrect. Check Google Patents before assuming it's real. + +## Page structure + +| File | Topic | Body class | +|---|---|---| +| `index.html` | Home / card grid | (none) | +| `natural-world.html` | Forests, oceans, symbiosis, extremophiles | `section-natural-world` | +| `inventions.html` | Accidental inventions, printing press, strange patents | `section-inventions` | +| `phenomena.html` | Ball lightning, placebo, synesthesia, Mpemba effect | `section-phenomena` | +| `maps.html` | Cartography, phantom islands, Tristan da Cunha, Derinkuyu | `section-maps` | +| `human-body.html` | Brain, gut, skeleton, eye, blood, phantom limbs | `section-human-body` | +| `space.html` | Universe scale, neutron stars, dark matter, Voyager | `section-space` | +| `about.html` | Fictional site lore | `section-about` | + +## Development + +No build or serve command needed — open any `.html` file directly in a browser. For local dev with live reload, any static server works (`python3 -m http.server`, etc.). + +No tests, no linting, no CI. \ No newline at end of file diff --git a/about.html b/about.html index eb5888d..41e7ff2 100644 --- a/about.html +++ b/about.html @@ -28,6 +28,8 @@ + +
About This Site

About Dangerous Wonder

@@ -50,6 +52,9 @@

The History of Dangerous Wonder

+ + +

The site has lived many lives across its quarter-century on the web. What follows is the true and occasionally embellished record of how it got here.

1999 — The Beginning

@@ -81,9 +86,13 @@
+ +

Key Milestones

+ +
  • April 3, 1999 — Dangerous Wonder launches on GeoCities with 14 pages
  • December 1999 — First visitor from outside North America (Helsinki, Finland — they were reading about the aurora borealis)
  • @@ -102,9 +111,13 @@
    + +

    Why "Dangerous Wonder"?

    + +
    A child gazing up at a towering forest

    Wonder is not passive. It demands that you look closer, step further, ask one more question.

    @@ -123,6 +136,7 @@
    +

    Did You Know?

    Dangerous Wonder has been cited in three published academic papers, referenced by a BBC documentary on deep-sea vents, and once linked from a now-deleted tweet by a popular astrophysicist that sent 40,000 visitors to the site in a single afternoon. The server held. Barely. Marguerite celebrated by updating the page about tardigrades and going to bed early.

    @@ -149,6 +163,7 @@
    +

    Site Statistics

    • Pages published: 743
    • @@ -174,6 +189,8 @@

      How to Explore (and What You Might Find)

      + +

      Some things on Dangerous Wonder are easy to find. They are on the pages you'd expect, in the sections you'd look in first. But Marguerite and Solène have always believed that a good reference book rewards the careful reader — the one who reads footnotes, who notices the small print, who clicks on things just to see what happens.

      There are hidden pages on this site. There are Easter eggs in the source code. There are links that only appear if you look closely at the image captions. There is at least one page that can only be reached by visiting another page at a specific time of year. We are not going to tell you which one.

      diff --git a/css/style.css b/css/style.css index 2a189f2..9e5cd6b 100644 --- a/css/style.css +++ b/css/style.css @@ -567,6 +567,97 @@ p { .toc { columns: 1; } + + .clipart-left, .clipart-right { + float: none; + margin: 8px auto; + max-width: 80px; + } + + .clipart-section { + max-width: 100px; + } + + .clipart-wide { + max-width: 120px; + } +} + +/* --- Clipart Decorations --- */ +.clipart { + display: block; + margin: 0 auto; + max-width: 120px; + opacity: 0.85; + image-rendering: auto; + transition: opacity 0.3s, transform 0.3s; +} + +.clipart-left { + float: left; + margin: 6px 20px 10px 0; + max-width: 100px; + opacity: 0.85; + image-rendering: auto; + filter: drop-shadow(1px 2px 3px rgba(0,0,0,0.15)); + transition: opacity 0.3s, transform 0.3s; +} + +.clipart-right { + float: right; + margin: 6px 0 10px 20px; + max-width: 100px; + opacity: 0.85; + image-rendering: auto; + filter: drop-shadow(1px 2px 3px rgba(0,0,0,0.15)); + transition: opacity 0.3s, transform 0.3s; +} + +.clipart-inline { + display: inline; + vertical-align: baseline; + max-height: 1.4em; + margin: 0 0.15em; + image-rendering: auto; +} + +.clipart-section { + display: block; + margin: 30px auto 0; + max-width: 140px; + opacity: 0.8; + image-rendering: auto; + filter: drop-shadow(1px 2px 3px rgba(0,0,0,0.15)); + transition: opacity 0.3s, transform 0.3s; +} + +.clipart-divider { + display: block; + margin: 10px auto; + max-width: 100px; + opacity: 0.6; + image-rendering: auto; + transition: opacity 0.3s, transform 0.3s; +} + +.clipart-wide { + display: block; + margin: 10px auto; + max-width: 180px; + opacity: 0.8; + image-rendering: auto; + filter: drop-shadow(1px 2px 3px rgba(0,0,0,0.15)); + transition: opacity 0.3s, transform 0.3s; +} + +.clipart-left:hover, +.clipart-right:hover, +.clipart:hover, +.clipart-section:hover, +.clipart-divider:hover, +.clipart-wide:hover { + opacity: 1; + transform: rotate(-3deg); } /* --- Utility --- */ diff --git a/human-body.html b/human-body.html index d17fb6f..9a4cc08 100644 --- a/human-body.html +++ b/human-body.html @@ -28,6 +28,8 @@
    + +
    Chapter Five

    The Human Body

    @@ -43,6 +45,8 @@
    + +
    The human brain, exterior view @@ -51,6 +55,8 @@

    The Brain: A Universe in Three Pounds

    + +

    The human brain weighs roughly 1.4 kilograms — about the same as a bag of sugar — yet it consumes fully 20 percent of the body’s total energy output. Its 86 billion neurons form something on the order of 100 trillion synaptic connections, a number so large it rivals the number of stars in the Milky Way. Each neuron can fire an electrical impulse up to 200 times per second, and a single cubic millimetre of cortical tissue contains roughly one kilometre of wiring.

    Grey Matter vs White Matter

    @@ -61,6 +67,7 @@
    +

    Brain Facts at a Glance

    • 86 billion — approximate number of neurons in the adult human brain
    • @@ -82,6 +89,8 @@

      Your Gut’s Second Brain

      + +

      Tucked into the walls of your intestines lies a neural network so extensive that scientists have called it the “second brain.” The enteric nervous system (ENS) contains roughly 500 million neurons — more than the spinal cord, and more than the entire brain of many mammals. It operates largely independently of the brain in your skull, controlling the complex muscular contractions (peristalsis) that push food through roughly six to seven metres of winding gut, regulating blood flow to digestive organs, and managing the release of enzymes and hormones.

      The ENS produces an astonishing 95 percent of the body’s serotonin, the neurotransmitter most associated with mood and well-being. This is not a coincidence. The gut and the brain are in constant dialogue via the vagus nerve, and the traffic is heavily one-sided: roughly 80 percent of the signals travel upward, from gut to brain, not the other way around. Your stomach has been telling your mind things for your entire life, and until very recently, science barely listened.

      @@ -98,9 +107,13 @@
      + +

      The Skeleton That Replaces Itself

      + +

      Your skeleton is not the fixed, inert scaffolding you might imagine. Every seven to ten years, through a process called bone remodelling, your entire skeleton is demolished and rebuilt — cell by cell — from scratch. Two types of cells do the work: osteoclasts, which dissolve old bone, and osteoblasts, which deposit new bone in its place. At any given moment, roughly a million of these tiny construction crews are at work somewhere in your body, dismantling and rebuilding in a continuous cycle that keeps your bones responsive to the stresses you place on them.

      This is why astronauts lose bone density in space: without the constant loading of gravity, the osteoclasts keep demolishing but the osteoblasts slow their rebuilding, and the skeleton gradually weakens. It is also why weight-bearing exercise builds stronger bones — the mechanical stress signals the osteoblasts to lay down denser, thicker tissue. Your skeleton is listening to what you do with it.

      @@ -109,6 +122,7 @@
      +

      The Skeleton in Numbers

      • 206 — bones in the adult human body (babies are born with roughly 270; many fuse as they grow)
      • @@ -119,7 +133,7 @@
      -
      ◊ ◊ ◊
      +
      @@ -129,6 +143,8 @@

      Seeing Photons: The Eye as Particle Detector

      + +

      Inside each of your eyes, the retina holds two types of photoreceptor cells: rods, which detect dim light and movement, and cones, which detect colour. A human rod cell is sensitive enough to register a single photon — a single quantum of light, the smallest unit of electromagnetic energy that exists. In careful laboratory experiments, test subjects have been able to detect as few as five to nine photons striking the retina simultaneously. Your eyes are, by any reasonable definition, particle detectors.

      Light enters the cornea and passes through the pupil, whose diameter is adjusted by the iris in response to ambient brightness. It is then focused by the lens onto the retina at the back of the eye, where it triggers a cascade of chemical reactions in the photoreceptor cells. This cascade converts a particle of light into an electrical signal that travels along the optic nerve to the visual cortex at the back of the brain. The entire journey — photon to percept — takes roughly 13 milliseconds.

      @@ -141,6 +157,8 @@

      The Bizarre Journey of a Red Blood Cell

      + +

      A red blood cell — an erythrocyte — is born in the bone marrow, squeezed out through the walls of a sinusoid like toothpaste from a tube. It enters the bloodstream bereft of a nucleus, bereft of mitochondria, bereft of DNA. It is, in fact, not really a cell at all anymore, but a ghost: a hollowed-out disc of membrane packed with 270 million molecules of haemoglobin, each one a precisely folded protein capable of seizing four molecules of oxygen and carrying them through the body like suitcases on a luggage carousel.

      The cell’s journey is a relentless circuit. Pumped from the left ventricle of the heart into the aorta with each heartbeat — a pressure that would send a jet of blood six feet into the air if the vessel were open — it races through arteries that divide and subdivide until they become capillaries barely wide enough for the cell to squeeze through. It deforms, elongates, twists. In the capillaries of the lungs it picks up oxygen; in the capillaries of the muscles, the brain, the liver, it drops oxygen off and picks up carbon dioxide. The round trip takes roughly one minute. Over its lifespan of roughly 120 days, a single red blood cell will make the journey approximately 150,000 times, travelling a total distance of roughly 500 kilometres, before being engulfed and recycled by a macrophage in the spleen or the liver.

      @@ -149,6 +167,7 @@
      +

      Did You Know?

      If all the blood vessels in your body — arteries, veins, and capillaries — were laid end to end, they would stretch roughly 100,000 kilometres: more than twice around the Earth. The vast majority of that length is capillaries, each one narrower than a human hair, each one a place where oxygen and nutrients are exchanged for waste, cell by cell, breath by breath.

      @@ -158,6 +177,8 @@

      Why We Blush: The Uniquely Human Flush

      + +

      Of all the body’s involuntary responses, blushing may be the most peculiar — because humans are the only species known to do it. Darwin himself called blushing “the most peculiar and most human of all expressions.” Other primates reddened with rage; only humans redden with shame.

      The mechanism is straightforward: the sympathetic nervous system — part of the body’s fight-or-flight system — triggers the release of adrenaline, which causes the blood vessels in the face, neck, and upper chest to dilate. Blood rushes to the skin’s surface, producing the characteristic flush. What is not straightforward is why. Why should a social emotion — embarrassment, shame, the awareness of being judged — produce a visible, involuntary physical signal?

      @@ -170,6 +191,8 @@

      Phantom Limbs: The Body That Remembers

      + +

      After an amputation, something extraordinary often happens: the missing limb is still there. Not metaphorically. The patient can feel it, move it, sense temperature and pressure in it, even feel pain in it — pain in a hand that no longer exists, in a leg that has been buried for years. This is phantom limb syndrome, and it affects an estimated 80 percent of amputees.

      The explanation lies in the brain’s body map — the somatosensory cortex, a strip of neural tissue across the top of the brain that corresponds point-by-point to the body’s surface. When a limb is removed, the brain does not simply erase the map. The territory in the cortex that once received signals from the missing hand, for instance, is suddenly silent — but it does not stay silent. Neighbouring regions, starved for input, begin to encroach. In the classic demonstration, a patient whose arm had been amputated reported feeling a phantom hand when his face was touched, because the face’s cortical territory had invaded the hand’s abandoned real estate.

      @@ -178,6 +201,7 @@
      +

      Phantom Limb Syndrome — Key Facts

      • 80% — estimated proportion of amputees who experience phantom sensations
      • @@ -192,6 +216,8 @@

        How the Ear Turns Air Into Electricity

        + +

        Sound, at its most fundamental, is nothing more than air molecules pushing against one another in waves. A plucked string, a spoken word, a thunderclap — all are pressure waves rippling outward from their source at roughly 343 metres per second. The ear’s task is to convert those ripples into the only language the brain understands: electricity.

        The journey begins at the outer ear — the cartilage funnel on the side of your head — which collects and focuses sound waves into the ear canal. At the end of the canal lies the tympanic membrane, or eardrum: a thin, taut cone of tissue that vibrates in sympathy with the incoming pressure waves. Attached to the eardrum are three bones — the malleus, incus, and stapes, collectively known as the ossicles — which form the smallest set of bones in the body and the only ones that are fully grown at birth. They act as a lever system, amplifying the vibration and transmitting it through the oval window into the fluid of the cochlea.

        @@ -217,12 +243,15 @@

        A Final Note on the Machine You Live In

        + +

        The human body contains roughly 37.2 trillion cells, organised into approximately 200 distinct types, arranged into 79 organs, supported by 206 bones, threaded with 100,000 kilometres of blood vessels, and governed by 86 billion neurons. It runs on roughly 100 watts of power. It self-repairs. It self-replicates. It maintains its own temperature within a fraction of a degree, its own pH within a few hundredths of a point, and its own structural integrity across decades of use. It does all of this without your conscious input. You do not tell your bones to remodel, or your hair cells to transduce, or your osteoclasts to dissolve old tissue. The machine runs itself.

        What is most remarkable, perhaps, is not any single system but their integration. The gut talks to the brain. The bones talk to the kidneys. The skin talks to the immune system. Every organ is in constant conversation with every other, through hormones, through nerve signals, through the shared medium of the bloodstream. The body is not a collection of parts. It is a community — and you are the community’s only conscious witness.

        +

        The Body by the Numbers

        • 37.2 trillion — estimated number of cells in the human body
        • diff --git a/img/abstract-cross-section-graphic.png b/img/abstract-cross-section-graphic.png new file mode 100644 index 0000000..14ce81b Binary files /dev/null and b/img/abstract-cross-section-graphic.png differ diff --git a/img/acorns-illustration.png b/img/acorns-illustration.png new file mode 100644 index 0000000..3cf8412 Binary files /dev/null and b/img/acorns-illustration.png differ diff --git a/img/alchemical-still-distillation.png b/img/alchemical-still-distillation.png new file mode 100644 index 0000000..5847bd3 Binary files /dev/null and b/img/alchemical-still-distillation.png differ diff --git a/img/alchemist-equipment-cartoon.png b/img/alchemist-equipment-cartoon.png new file mode 100644 index 0000000..fcaad5c Binary files /dev/null and b/img/alchemist-equipment-cartoon.png differ diff --git a/img/ammonite-shell-fossil-image.png b/img/ammonite-shell-fossil-image.png new file mode 100644 index 0000000..7d1beec Binary files /dev/null and b/img/ammonite-shell-fossil-image.png differ diff --git a/img/ammonite-shell-image.png b/img/ammonite-shell-image.png new file mode 100644 index 0000000..05ebf44 Binary files /dev/null and b/img/ammonite-shell-image.png differ diff --git a/img/ancient-amphitheater-technical-drawing.png b/img/ancient-amphitheater-technical-drawing.png new file mode 100644 index 0000000..204ffd8 Binary files /dev/null and b/img/ancient-amphitheater-technical-drawing.png differ diff --git a/img/ancient-boat-illustration.png b/img/ancient-boat-illustration.png new file mode 100644 index 0000000..7dccf2b Binary files /dev/null and b/img/ancient-boat-illustration.png differ diff --git a/img/ancient-book-illustration-asian-culture-paintings.png b/img/ancient-book-illustration-asian-culture-paintings.png new file mode 100644 index 0000000..758cd11 Binary files /dev/null and b/img/ancient-book-illustration-asian-culture-paintings.png differ diff --git a/img/ancient-book-illustration-brown-leather-textured-design.png b/img/ancient-book-illustration-brown-leather-textured-design.png new file mode 100644 index 0000000..178a517 Binary files /dev/null and b/img/ancient-book-illustration-brown-leather-textured-design.png differ diff --git a/img/ancient-book-with-herbal-print.png b/img/ancient-book-with-herbal-print.png new file mode 100644 index 0000000..b24f2dc Binary files /dev/null and b/img/ancient-book-with-herbal-print.png differ diff --git a/img/ancient-chinese-armor-sketch.png b/img/ancient-chinese-armor-sketch.png new file mode 100644 index 0000000..6f93759 Binary files /dev/null and b/img/ancient-chinese-armor-sketch.png differ diff --git a/img/ancient-chinese-coins-illustration.png b/img/ancient-chinese-coins-illustration.png new file mode 100644 index 0000000..3d0d804 Binary files /dev/null and b/img/ancient-chinese-coins-illustration.png differ diff --git a/img/ancient-city-map-drawing.png b/img/ancient-city-map-drawing.png new file mode 100644 index 0000000..c6cc2e2 Binary files /dev/null and b/img/ancient-city-map-drawing.png differ diff --git a/img/ancient-egyptian-scroll-image.png b/img/ancient-egyptian-scroll-image.png new file mode 100644 index 0000000..ee95f2b Binary files /dev/null and b/img/ancient-egyptian-scroll-image.png differ diff --git a/img/ancient-flag-heraldry-image.png b/img/ancient-flag-heraldry-image.png new file mode 100644 index 0000000..4549156 Binary files /dev/null and b/img/ancient-flag-heraldry-image.png differ diff --git a/img/ancient-golden-compass-logo.png b/img/ancient-golden-compass-logo.png new file mode 100644 index 0000000..3dd9843 Binary files /dev/null and b/img/ancient-golden-compass-logo.png differ diff --git a/img/ancient-golden-monument-image.png b/img/ancient-golden-monument-image.png new file mode 100644 index 0000000..ce6a6d9 Binary files /dev/null and b/img/ancient-golden-monument-image.png differ diff --git a/img/ancient-greek-coin-portrait.png b/img/ancient-greek-coin-portrait.png new file mode 100644 index 0000000..d453d6a Binary files /dev/null and b/img/ancient-greek-coin-portrait.png differ diff --git a/img/ancient-greek-column-decorative-art.png b/img/ancient-greek-column-decorative-art.png new file mode 100644 index 0000000..ff342e4 Binary files /dev/null and b/img/ancient-greek-column-decorative-art.png differ diff --git a/img/ancient-greek-column-drawing.png b/img/ancient-greek-column-drawing.png new file mode 100644 index 0000000..84a0027 Binary files /dev/null and b/img/ancient-greek-column-drawing.png differ diff --git a/img/ancient-greek-helmet.png b/img/ancient-greek-helmet.png new file mode 100644 index 0000000..6ebc5ac Binary files /dev/null and b/img/ancient-greek-helmet.png differ diff --git a/img/ancient-greek-heroes-relief-carving.png b/img/ancient-greek-heroes-relief-carving.png new file mode 100644 index 0000000..0faacee Binary files /dev/null and b/img/ancient-greek-heroes-relief-carving.png differ diff --git a/img/ancient-greek-vase-artwork.png b/img/ancient-greek-vase-artwork.png new file mode 100644 index 0000000..c4babeb Binary files /dev/null and b/img/ancient-greek-vase-artwork.png differ diff --git a/img/ancient-greek-vase-illustration.png b/img/ancient-greek-vase-illustration.png new file mode 100644 index 0000000..dfa6b5e Binary files /dev/null and b/img/ancient-greek-vase-illustration.png differ diff --git a/img/ancient-greek-warrior-helmet.png b/img/ancient-greek-warrior-helmet.png new file mode 100644 index 0000000..885733c Binary files /dev/null and b/img/ancient-greek-warrior-helmet.png differ diff --git a/img/ancient-japanese-chest-keychain.png b/img/ancient-japanese-chest-keychain.png new file mode 100644 index 0000000..3a8341a Binary files /dev/null and b/img/ancient-japanese-chest-keychain.png differ diff --git a/img/ancient-map-of-mediterranean-countries.png b/img/ancient-map-of-mediterranean-countries.png new file mode 100644 index 0000000..5ea817c Binary files /dev/null and b/img/ancient-map-of-mediterranean-countries.png differ diff --git a/img/ancient-map-rolls-clip-art.png b/img/ancient-map-rolls-clip-art.png new file mode 100644 index 0000000..c0fa792 Binary files /dev/null and b/img/ancient-map-rolls-clip-art.png differ diff --git a/img/ancient-map-set-antique-geography.png b/img/ancient-map-set-antique-geography.png new file mode 100644 index 0000000..8f787d1 Binary files /dev/null and b/img/ancient-map-set-antique-geography.png differ diff --git a/img/ancient-metal-coin-image.png b/img/ancient-metal-coin-image.png new file mode 100644 index 0000000..8d3c6a7 Binary files /dev/null and b/img/ancient-metal-coin-image.png differ diff --git a/img/ancient-music-sheet.png b/img/ancient-music-sheet.png new file mode 100644 index 0000000..fa51b87 Binary files /dev/null and b/img/ancient-music-sheet.png differ diff --git a/img/ancient-roman-archway-icon.png b/img/ancient-roman-archway-icon.png new file mode 100644 index 0000000..774c533 Binary files /dev/null and b/img/ancient-roman-archway-icon.png differ diff --git a/img/ancient-scroll-image-hand-drawn-cartoon-style.png b/img/ancient-scroll-image-hand-drawn-cartoon-style.png new file mode 100644 index 0000000..324620e Binary files /dev/null and b/img/ancient-scroll-image-hand-drawn-cartoon-style.png differ diff --git a/img/ancient-scroll-magic-runes.png b/img/ancient-scroll-magic-runes.png new file mode 100644 index 0000000..547f022 Binary files /dev/null and b/img/ancient-scroll-magic-runes.png differ diff --git a/img/ancient-scroll-map-history.png b/img/ancient-scroll-map-history.png new file mode 100644 index 0000000..b694f5a Binary files /dev/null and b/img/ancient-scroll-map-history.png differ diff --git a/img/ancient-scroll-with-forest-illustration.png b/img/ancient-scroll-with-forest-illustration.png new file mode 100644 index 0000000..f1af9d1 Binary files /dev/null and b/img/ancient-scroll-with-forest-illustration.png differ diff --git a/img/ancient-seashell-illustration.png b/img/ancient-seashell-illustration.png new file mode 100644 index 0000000..23e7eff Binary files /dev/null and b/img/ancient-seashell-illustration.png differ diff --git a/img/ancient-stone-arch-icon.png b/img/ancient-stone-arch-icon.png new file mode 100644 index 0000000..f94590c Binary files /dev/null and b/img/ancient-stone-arch-icon.png differ diff --git a/img/ancient-warrior-cartoon-image.png b/img/ancient-warrior-cartoon-image.png new file mode 100644 index 0000000..2160144 Binary files /dev/null and b/img/ancient-warrior-cartoon-image.png differ diff --git a/img/antiquated-bronze-goblet-image.png b/img/antiquated-bronze-goblet-image.png new file mode 100644 index 0000000..86f1e14 Binary files /dev/null and b/img/antiquated-bronze-goblet-image.png differ diff --git a/img/antique-blue-egg-design.png b/img/antique-blue-egg-design.png new file mode 100644 index 0000000..2d2fcd8 Binary files /dev/null and b/img/antique-blue-egg-design.png differ diff --git a/img/antique-brass-astronomical-instrument.png b/img/antique-brass-astronomical-instrument.png new file mode 100644 index 0000000..4596048 Binary files /dev/null and b/img/antique-brass-astronomical-instrument.png differ diff --git a/img/antique-brass-compass.png b/img/antique-brass-compass.png new file mode 100644 index 0000000..5f7750f Binary files /dev/null and b/img/antique-brass-compass.png differ diff --git a/img/antique-brass-microscope.png b/img/antique-brass-microscope.png new file mode 100644 index 0000000..b03f07e Binary files /dev/null and b/img/antique-brass-microscope.png differ diff --git a/img/antique-chinese-vase-art.png b/img/antique-chinese-vase-art.png new file mode 100644 index 0000000..e3483d7 Binary files /dev/null and b/img/antique-chinese-vase-art.png differ diff --git a/img/antique-compass-jewelry.png b/img/antique-compass-jewelry.png new file mode 100644 index 0000000..333cdf7 Binary files /dev/null and b/img/antique-compass-jewelry.png differ diff --git a/img/antique-globe-cartographer.png b/img/antique-globe-cartographer.png new file mode 100644 index 0000000..27001de Binary files /dev/null and b/img/antique-globe-cartographer.png differ diff --git a/img/antique-gold-eagle-emblem.png b/img/antique-gold-eagle-emblem.png new file mode 100644 index 0000000..50b878e Binary files /dev/null and b/img/antique-gold-eagle-emblem.png differ diff --git a/img/antique-gold-monocular-magnifying-glass.png b/img/antique-gold-monocular-magnifying-glass.png new file mode 100644 index 0000000..dba9fe3 Binary files /dev/null and b/img/antique-gold-monocular-magnifying-glass.png differ diff --git a/img/antique-golden-coin-image.png b/img/antique-golden-coin-image.png new file mode 100644 index 0000000..3c39615 Binary files /dev/null and b/img/antique-golden-coin-image.png differ diff --git a/img/antique-golden-magnifying-glass.png b/img/antique-golden-magnifying-glass.png new file mode 100644 index 0000000..96fcbb9 Binary files /dev/null and b/img/antique-golden-magnifying-glass.png differ diff --git a/img/antique-golden-round-glasses.png b/img/antique-golden-round-glasses.png new file mode 100644 index 0000000..bca460e Binary files /dev/null and b/img/antique-golden-round-glasses.png differ diff --git a/img/antique-golden-spine-book-image.png b/img/antique-golden-spine-book-image.png new file mode 100644 index 0000000..8894520 Binary files /dev/null and b/img/antique-golden-spine-book-image.png differ diff --git a/img/antique-leather-books-shelf-illustration.png b/img/antique-leather-books-shelf-illustration.png new file mode 100644 index 0000000..8961368 Binary files /dev/null and b/img/antique-leather-books-shelf-illustration.png differ diff --git a/img/antique-world-map-cards.png b/img/antique-world-map-cards.png new file mode 100644 index 0000000..a4665f9 Binary files /dev/null and b/img/antique-world-map-cards.png differ diff --git a/img/asian-ceramic-bowl-icon.png b/img/asian-ceramic-bowl-icon.png new file mode 100644 index 0000000..7657632 Binary files /dev/null and b/img/asian-ceramic-bowl-icon.png differ diff --git a/img/asian-seal-symbol-artwork.png b/img/asian-seal-symbol-artwork.png new file mode 100644 index 0000000..9a41e5d Binary files /dev/null and b/img/asian-seal-symbol-artwork.png differ diff --git a/img/asian-traditional-cube-art.png b/img/asian-traditional-cube-art.png new file mode 100644 index 0000000..44a9ca4 Binary files /dev/null and b/img/asian-traditional-cube-art.png differ diff --git a/img/beakers-scientific-experiment-image.png b/img/beakers-scientific-experiment-image.png new file mode 100644 index 0000000..92da2d1 Binary files /dev/null and b/img/beakers-scientific-experiment-image.png differ diff --git a/img/bee-illustration.png b/img/bee-illustration.png new file mode 100644 index 0000000..8997881 Binary files /dev/null and b/img/bee-illustration.png differ diff --git a/img/blue-bird-illustration.png b/img/blue-bird-illustration.png new file mode 100644 index 0000000..7c98fe5 Binary files /dev/null and b/img/blue-bird-illustration.png differ diff --git a/img/blue-butterfly-clip-art.png b/img/blue-butterfly-clip-art.png new file mode 100644 index 0000000..b1b16b5 Binary files /dev/null and b/img/blue-butterfly-clip-art.png differ diff --git a/img/blue-butterfly-clipart.png b/img/blue-butterfly-clipart.png new file mode 100644 index 0000000..4c8d90c Binary files /dev/null and b/img/blue-butterfly-clipart.png differ diff --git a/img/blue-butterfly-illustration.png b/img/blue-butterfly-illustration.png new file mode 100644 index 0000000..6a46a84 Binary files /dev/null and b/img/blue-butterfly-illustration.png differ diff --git a/img/blue-candy-easter-clip.png b/img/blue-candy-easter-clip.png new file mode 100644 index 0000000..575f939 Binary files /dev/null and b/img/blue-candy-easter-clip.png differ diff --git a/img/blue-glass-bottle-artwork.png b/img/blue-glass-bottle-artwork.png new file mode 100644 index 0000000..69e9280 Binary files /dev/null and b/img/blue-glass-bottle-artwork.png differ diff --git a/img/bone-skeleton-dino.png b/img/bone-skeleton-dino.png new file mode 100644 index 0000000..d3f3391 Binary files /dev/null and b/img/bone-skeleton-dino.png differ diff --git a/img/botanical-flower-fruit-chart.png b/img/botanical-flower-fruit-chart.png new file mode 100644 index 0000000..d6214f0 Binary files /dev/null and b/img/botanical-flower-fruit-chart.png differ diff --git a/img/botanical-flower-plant-fruit-illustration.png b/img/botanical-flower-plant-fruit-illustration.png new file mode 100644 index 0000000..4c6f742 Binary files /dev/null and b/img/botanical-flower-plant-fruit-illustration.png differ diff --git a/img/botanical-leaf-growth-diagram.png b/img/botanical-leaf-growth-diagram.png new file mode 100644 index 0000000..763399a Binary files /dev/null and b/img/botanical-leaf-growth-diagram.png differ diff --git a/img/botanical-science-award-medal-logo.png b/img/botanical-science-award-medal-logo.png new file mode 100644 index 0000000..60a3788 Binary files /dev/null and b/img/botanical-science-award-medal-logo.png differ diff --git a/img/brain-hemisphere-artwork.png b/img/brain-hemisphere-artwork.png new file mode 100644 index 0000000..96d4b04 Binary files /dev/null and b/img/brain-hemisphere-artwork.png differ diff --git a/img/bronze-canister-icon.png b/img/bronze-canister-icon.png new file mode 100644 index 0000000..59d2fa4 Binary files /dev/null and b/img/bronze-canister-icon.png differ diff --git a/img/bronze-keyring-illustration.png b/img/bronze-keyring-illustration.png new file mode 100644 index 0000000..d5532d2 Binary files /dev/null and b/img/bronze-keyring-illustration.png differ diff --git a/img/brown-nut-clipart.png b/img/brown-nut-clipart.png new file mode 100644 index 0000000..a9d2c41 Binary files /dev/null and b/img/brown-nut-clipart.png differ diff --git a/img/buddha-sitting-on-lotus-flower-symbolism.png b/img/buddha-sitting-on-lotus-flower-symbolism.png new file mode 100644 index 0000000..7572ac0 Binary files /dev/null and b/img/buddha-sitting-on-lotus-flower-symbolism.png differ diff --git a/img/bust-of-rome-illustration.png b/img/bust-of-rome-illustration.png new file mode 100644 index 0000000..b2e97ae Binary files /dev/null and b/img/bust-of-rome-illustration.png differ diff --git a/img/butterfly-cartoon-colorful.png b/img/butterfly-cartoon-colorful.png new file mode 100644 index 0000000..65847e9 Binary files /dev/null and b/img/butterfly-cartoon-colorful.png differ diff --git a/img/butterfly-cartoon-icon.png b/img/butterfly-cartoon-icon.png new file mode 100644 index 0000000..61444b6 Binary files /dev/null and b/img/butterfly-cartoon-icon.png differ diff --git a/img/butterfly-colorful-insect-cartoon.png b/img/butterfly-colorful-insect-cartoon.png new file mode 100644 index 0000000..0891362 Binary files /dev/null and b/img/butterfly-colorful-insect-cartoon.png differ diff --git a/img/butterfly-coloring-book.png b/img/butterfly-coloring-book.png new file mode 100644 index 0000000..eab28ba Binary files /dev/null and b/img/butterfly-coloring-book.png differ diff --git a/img/butterfly-jewel-painting.png b/img/butterfly-jewel-painting.png new file mode 100644 index 0000000..3b7f66b Binary files /dev/null and b/img/butterfly-jewel-painting.png differ diff --git a/img/butterfly-stained-glass.png b/img/butterfly-stained-glass.png new file mode 100644 index 0000000..fb7843b Binary files /dev/null and b/img/butterfly-stained-glass.png differ diff --git a/img/butterfly-symbol-image.png b/img/butterfly-symbol-image.png new file mode 100644 index 0000000..dd3ca5c Binary files /dev/null and b/img/butterfly-symbol-image.png differ diff --git a/img/butterfly-wings-colorful.png b/img/butterfly-wings-colorful.png new file mode 100644 index 0000000..e595a8b Binary files /dev/null and b/img/butterfly-wings-colorful.png differ diff --git a/img/celestial-globe-cartographer.png b/img/celestial-globe-cartographer.png new file mode 100644 index 0000000..5f87ade Binary files /dev/null and b/img/celestial-globe-cartographer.png differ diff --git a/img/chinese-coin-artwork.png b/img/chinese-coin-artwork.png new file mode 100644 index 0000000..488a247 Binary files /dev/null and b/img/chinese-coin-artwork.png differ diff --git a/img/chinese-warrior-cartoon.png b/img/chinese-warrior-cartoon.png new file mode 100644 index 0000000..6ea7072 Binary files /dev/null and b/img/chinese-warrior-cartoon.png differ diff --git a/img/classic-clock-black-and-white.png b/img/classic-clock-black-and-white.png new file mode 100644 index 0000000..03457ad Binary files /dev/null and b/img/classic-clock-black-and-white.png differ diff --git a/img/classic-sailboat-cartoon.png b/img/classic-sailboat-cartoon.png new file mode 100644 index 0000000..5c27a13 Binary files /dev/null and b/img/classic-sailboat-cartoon.png differ diff --git a/img/classic-typewriter-cartoon.png b/img/classic-typewriter-cartoon.png new file mode 100644 index 0000000..c65ab51 Binary files /dev/null and b/img/classic-typewriter-cartoon.png differ diff --git a/img/classic-vintage-camera-icon.png b/img/classic-vintage-camera-icon.png new file mode 100644 index 0000000..4472271 Binary files /dev/null and b/img/classic-vintage-camera-icon.png differ diff --git a/img/classical-detailed-grey-stone-column.png b/img/classical-detailed-grey-stone-column.png new file mode 100644 index 0000000..2f5a452 Binary files /dev/null and b/img/classical-detailed-grey-stone-column.png differ diff --git a/img/classical-grecian-bust-silver.png b/img/classical-grecian-bust-silver.png new file mode 100644 index 0000000..cd561e8 Binary files /dev/null and b/img/classical-grecian-bust-silver.png differ diff --git a/img/classical-greco-bust-cartoon.png b/img/classical-greco-bust-cartoon.png new file mode 100644 index 0000000..02e2aec Binary files /dev/null and b/img/classical-greco-bust-cartoon.png differ diff --git a/img/classical-greco-statue.png b/img/classical-greco-statue.png new file mode 100644 index 0000000..f7cfaae Binary files /dev/null and b/img/classical-greco-statue.png differ diff --git a/img/classical-grey-marble-nude-statue.png b/img/classical-grey-marble-nude-statue.png new file mode 100644 index 0000000..004a242 Binary files /dev/null and b/img/classical-grey-marble-nude-statue.png differ diff --git a/img/classical-rome-bust-clip-art.png b/img/classical-rome-bust-clip-art.png new file mode 100644 index 0000000..68d1bb3 Binary files /dev/null and b/img/classical-rome-bust-clip-art.png differ diff --git a/img/coiled-golden-scroll-image.png b/img/coiled-golden-scroll-image.png new file mode 100644 index 0000000..ce339d9 Binary files /dev/null and b/img/coiled-golden-scroll-image.png differ diff --git a/img/coins-british-penny-set.png b/img/coins-british-penny-set.png new file mode 100644 index 0000000..2c966dc Binary files /dev/null and b/img/coins-british-penny-set.png differ diff --git a/img/colorful-double-helix-dna.png b/img/colorful-double-helix-dna.png new file mode 100644 index 0000000..666c10a Binary files /dev/null and b/img/colorful-double-helix-dna.png differ diff --git a/img/compass-metal-vintage.png b/img/compass-metal-vintage.png new file mode 100644 index 0000000..e246bc9 Binary files /dev/null and b/img/compass-metal-vintage.png differ diff --git a/img/crystal-rock-gemstone.png b/img/crystal-rock-gemstone.png new file mode 100644 index 0000000..0f64e85 Binary files /dev/null and b/img/crystal-rock-gemstone.png differ diff --git a/img/decorative-blue-metallic-egg.png b/img/decorative-blue-metallic-egg.png new file mode 100644 index 0000000..fa49c66 Binary files /dev/null and b/img/decorative-blue-metallic-egg.png differ diff --git a/img/detailed-heart-anatomy-image.png b/img/detailed-heart-anatomy-image.png new file mode 100644 index 0000000..b1aa02b Binary files /dev/null and b/img/detailed-heart-anatomy-image.png differ diff --git a/img/egyptian-cat-statue.png b/img/egyptian-cat-statue.png new file mode 100644 index 0000000..88b145e Binary files /dev/null and b/img/egyptian-cat-statue.png differ diff --git a/img/egyptian-monument-drawing.png b/img/egyptian-monument-drawing.png new file mode 100644 index 0000000..78d203b Binary files /dev/null and b/img/egyptian-monument-drawing.png differ diff --git a/img/electronic-device-circuit-board.png b/img/electronic-device-circuit-board.png new file mode 100644 index 0000000..061fc4b Binary files /dev/null and b/img/electronic-device-circuit-board.png differ diff --git a/img/fantasy-mushroom-illustration.png b/img/fantasy-mushroom-illustration.png new file mode 100644 index 0000000..f2114fc Binary files /dev/null and b/img/fantasy-mushroom-illustration.png differ diff --git a/img/feather-colorful-vivid.png b/img/feather-colorful-vivid.png new file mode 100644 index 0000000..1dd2402 Binary files /dev/null and b/img/feather-colorful-vivid.png differ diff --git a/img/fern-leaf-vein-pattern.png b/img/fern-leaf-vein-pattern.png new file mode 100644 index 0000000..25f8b8b Binary files /dev/null and b/img/fern-leaf-vein-pattern.png differ diff --git a/img/fluttering-yellow-butterfly.png b/img/fluttering-yellow-butterfly.png new file mode 100644 index 0000000..b484008 Binary files /dev/null and b/img/fluttering-yellow-butterfly.png differ diff --git a/img/frog-cartoon-colorful.png b/img/frog-cartoon-colorful.png new file mode 100644 index 0000000..a97157e Binary files /dev/null and b/img/frog-cartoon-colorful.png differ diff --git a/img/garden-composting-microscope-drawing.png b/img/garden-composting-microscope-drawing.png new file mode 100644 index 0000000..c5018c6 Binary files /dev/null and b/img/garden-composting-microscope-drawing.png differ diff --git a/img/gemstone-collection-illustration.png b/img/gemstone-collection-illustration.png new file mode 100644 index 0000000..9af0a64 Binary files /dev/null and b/img/gemstone-collection-illustration.png differ diff --git a/img/gemstone-mineral-collection.png b/img/gemstone-mineral-collection.png new file mode 100644 index 0000000..b495c97 Binary files /dev/null and b/img/gemstone-mineral-collection.png differ diff --git a/img/gemstones-mineral-painting.png b/img/gemstones-mineral-painting.png new file mode 100644 index 0000000..2dbca4b Binary files /dev/null and b/img/gemstones-mineral-painting.png differ diff --git a/img/gemstones-mineral-stone-art.png b/img/gemstones-mineral-stone-art.png new file mode 100644 index 0000000..2468eb3 Binary files /dev/null and b/img/gemstones-mineral-stone-art.png differ diff --git a/img/globe-cartoon-illustration.png b/img/globe-cartoon-illustration.png new file mode 100644 index 0000000..cc87bd9 Binary files /dev/null and b/img/globe-cartoon-illustration.png differ diff --git a/img/great-wall-china-tomb-chamber-jade-burial.png b/img/great-wall-china-tomb-chamber-jade-burial.png new file mode 100644 index 0000000..a4b9b69 Binary files /dev/null and b/img/great-wall-china-tomb-chamber-jade-burial.png differ diff --git a/img/green-leafy-plants-cartoon.png b/img/green-leafy-plants-cartoon.png new file mode 100644 index 0000000..6340b91 Binary files /dev/null and b/img/green-leafy-plants-cartoon.png differ diff --git a/img/green-metal-sword-icon.png b/img/green-metal-sword-icon.png new file mode 100644 index 0000000..cd9fe80 Binary files /dev/null and b/img/green-metal-sword-icon.png differ diff --git a/img/green-pepper-vegetable-drawing.png b/img/green-pepper-vegetable-drawing.png new file mode 100644 index 0000000..49cedfa Binary files /dev/null and b/img/green-pepper-vegetable-drawing.png differ diff --git a/img/guillotine-execution-cartoon.png b/img/guillotine-execution-cartoon.png new file mode 100644 index 0000000..878c740 Binary files /dev/null and b/img/guillotine-execution-cartoon.png differ diff --git a/img/happy-mask-caricature.png b/img/happy-mask-caricature.png new file mode 100644 index 0000000..1d7a030 Binary files /dev/null and b/img/happy-mask-caricature.png differ diff --git a/img/herbal-extract-bottle-cartoon.png b/img/herbal-extract-bottle-cartoon.png new file mode 100644 index 0000000..3d7260a Binary files /dev/null and b/img/herbal-extract-bottle-cartoon.png differ diff --git a/img/herbal-remedy-bottle-cartoon.png b/img/herbal-remedy-bottle-cartoon.png new file mode 100644 index 0000000..6967087 Binary files /dev/null and b/img/herbal-remedy-bottle-cartoon.png differ diff --git a/img/historical-fiction-book-cover.png b/img/historical-fiction-book-cover.png new file mode 100644 index 0000000..fd8aadb Binary files /dev/null and b/img/historical-fiction-book-cover.png differ diff --git a/img/historical-key-events-timeline.png b/img/historical-key-events-timeline.png new file mode 100644 index 0000000..eebef29 Binary files /dev/null and b/img/historical-key-events-timeline.png differ diff --git a/img/industrial-steampunk-engine-illustration.png b/img/industrial-steampunk-engine-illustration.png new file mode 100644 index 0000000..84dae0f Binary files /dev/null and b/img/industrial-steampunk-engine-illustration.png differ diff --git a/img/ink-and-quill-icon.png b/img/ink-and-quill-icon.png new file mode 100644 index 0000000..368ad69 Binary files /dev/null and b/img/ink-and-quill-icon.png differ diff --git a/img/iron-norse-helmet.png b/img/iron-norse-helmet.png new file mode 100644 index 0000000..ab29eb1 Binary files /dev/null and b/img/iron-norse-helmet.png differ diff --git a/img/jungle-exploration-illustration.png b/img/jungle-exploration-illustration.png new file mode 100644 index 0000000..657e119 Binary files /dev/null and b/img/jungle-exploration-illustration.png differ diff --git a/img/laboratory-beakers-clip-art.png b/img/laboratory-beakers-clip-art.png new file mode 100644 index 0000000..627304b Binary files /dev/null and b/img/laboratory-beakers-clip-art.png differ diff --git a/img/laboratory-signage-insignia.png b/img/laboratory-signage-insignia.png new file mode 100644 index 0000000..402f3cb Binary files /dev/null and b/img/laboratory-signage-insignia.png differ diff --git a/img/leafy-greens-herb-vegetable.png b/img/leafy-greens-herb-vegetable.png new file mode 100644 index 0000000..727f761 Binary files /dev/null and b/img/leafy-greens-herb-vegetable.png differ diff --git a/img/lit-gold-bulb-icon.png b/img/lit-gold-bulb-icon.png new file mode 100644 index 0000000..22ac352 Binary files /dev/null and b/img/lit-gold-bulb-icon.png differ diff --git a/img/magical-alchemist-device.png b/img/magical-alchemist-device.png new file mode 100644 index 0000000..98c0361 Binary files /dev/null and b/img/magical-alchemist-device.png differ diff --git a/img/magical-amethyst-essence-bottle.png b/img/magical-amethyst-essence-bottle.png new file mode 100644 index 0000000..e616147 Binary files /dev/null and b/img/magical-amethyst-essence-bottle.png differ diff --git a/img/measuring-tool-measuring-tape-scale.png b/img/measuring-tool-measuring-tape-scale.png new file mode 100644 index 0000000..9579fc0 Binary files /dev/null and b/img/measuring-tool-measuring-tape-scale.png differ diff --git a/img/mechanical-golden-clock-cartoon.png b/img/mechanical-golden-clock-cartoon.png new file mode 100644 index 0000000..99b8577 Binary files /dev/null and b/img/mechanical-golden-clock-cartoon.png differ diff --git a/img/medieval-leather-bound-book-illustration.png b/img/medieval-leather-bound-book-illustration.png new file mode 100644 index 0000000..67c253b Binary files /dev/null and b/img/medieval-leather-bound-book-illustration.png differ diff --git a/img/medieval-warrior-helm.png b/img/medieval-warrior-helm.png new file mode 100644 index 0000000..eb5c387 Binary files /dev/null and b/img/medieval-warrior-helm.png differ diff --git a/img/mediterranean-vacation-painting.png b/img/mediterranean-vacation-painting.png new file mode 100644 index 0000000..33d8a9c Binary files /dev/null and b/img/mediterranean-vacation-painting.png differ diff --git a/img/metal-antenna-array.png b/img/metal-antenna-array.png new file mode 100644 index 0000000..a256b63 Binary files /dev/null and b/img/metal-antenna-array.png differ diff --git a/img/metallic-satellite-dish-graphic.png b/img/metallic-satellite-dish-graphic.png new file mode 100644 index 0000000..ba3733b Binary files /dev/null and b/img/metallic-satellite-dish-graphic.png differ diff --git a/img/metamorphosis-caterpillar-chrysalis-butterfly.png b/img/metamorphosis-caterpillar-chrysalis-butterfly.png new file mode 100644 index 0000000..1d4fa21 Binary files /dev/null and b/img/metamorphosis-caterpillar-chrysalis-butterfly.png differ diff --git a/img/meteorfragments-3d-render.png b/img/meteorfragments-3d-render.png new file mode 100644 index 0000000..af8f9f0 Binary files /dev/null and b/img/meteorfragments-3d-render.png differ diff --git a/img/meteorite-image.png b/img/meteorite-image.png new file mode 100644 index 0000000..461197d Binary files /dev/null and b/img/meteorite-image.png differ diff --git a/img/microscope-cartoon-image.png b/img/microscope-cartoon-image.png new file mode 100644 index 0000000..c24f81f Binary files /dev/null and b/img/microscope-cartoon-image.png differ diff --git a/img/monster-moss-plant-spider-clip-art.png b/img/monster-moss-plant-spider-clip-art.png new file mode 100644 index 0000000..ff39fd6 Binary files /dev/null and b/img/monster-moss-plant-spider-clip-art.png differ diff --git a/img/multicolored-dna-double-helix-image.png b/img/multicolored-dna-double-helix-image.png new file mode 100644 index 0000000..1cd4e22 Binary files /dev/null and b/img/multicolored-dna-double-helix-image.png differ diff --git a/img/natural-rock-specimen-illustration.png b/img/natural-rock-specimen-illustration.png new file mode 100644 index 0000000..8de779d Binary files /dev/null and b/img/natural-rock-specimen-illustration.png differ diff --git a/img/nature-elements-clipart.png b/img/nature-elements-clipart.png new file mode 100644 index 0000000..cb8b777 Binary files /dev/null and b/img/nature-elements-clipart.png differ diff --git a/img/nuts-candy-clipart.png b/img/nuts-candy-clipart.png new file mode 100644 index 0000000..5f3d701 Binary files /dev/null and b/img/nuts-candy-clipart.png differ diff --git a/img/ocean-liner-vintage-steamship-postcard.png b/img/ocean-liner-vintage-steamship-postcard.png new file mode 100644 index 0000000..f32a3d2 Binary files /dev/null and b/img/ocean-liner-vintage-steamship-postcard.png differ diff --git a/img/old-fashioned-brass-orreries-image.png b/img/old-fashioned-brass-orreries-image.png new file mode 100644 index 0000000..9fe5a65 Binary files /dev/null and b/img/old-fashioned-brass-orreries-image.png differ diff --git a/img/old-fashioned-brass-telescope-image.png b/img/old-fashioned-brass-telescope-image.png new file mode 100644 index 0000000..6f9b005 Binary files /dev/null and b/img/old-fashioned-brass-telescope-image.png differ diff --git a/img/old-fashioned-record-player.png b/img/old-fashioned-record-player.png new file mode 100644 index 0000000..1aa93b1 Binary files /dev/null and b/img/old-fashioned-record-player.png differ diff --git a/img/old-fashioned-steam-engine-drawing.png b/img/old-fashioned-steam-engine-drawing.png new file mode 100644 index 0000000..291bb47 Binary files /dev/null and b/img/old-fashioned-steam-engine-drawing.png differ diff --git a/img/old-fashioned-steamboat-cartoon.png b/img/old-fashioned-steamboat-cartoon.png new file mode 100644 index 0000000..1e6f0d5 Binary files /dev/null and b/img/old-fashioned-steamboat-cartoon.png differ diff --git a/img/old-leather-book-illustration.png b/img/old-leather-book-illustration.png new file mode 100644 index 0000000..a21cfe9 Binary files /dev/null and b/img/old-leather-book-illustration.png differ diff --git a/img/old-leather-book-search-icon.png b/img/old-leather-book-search-icon.png new file mode 100644 index 0000000..17022b7 Binary files /dev/null and b/img/old-leather-book-search-icon.png differ diff --git a/img/old-scroll-writing.png b/img/old-scroll-writing.png new file mode 100644 index 0000000..1e1c1b2 Binary files /dev/null and b/img/old-scroll-writing.png differ diff --git a/img/old-steam-engine-diagram.png b/img/old-steam-engine-diagram.png new file mode 100644 index 0000000..aa7f368 Binary files /dev/null and b/img/old-steam-engine-diagram.png differ diff --git a/img/old-world-orange-telescope.png b/img/old-world-orange-telescope.png new file mode 100644 index 0000000..dc9312e Binary files /dev/null and b/img/old-world-orange-telescope.png differ diff --git a/img/old-world-science-globe.png b/img/old-world-science-globe.png new file mode 100644 index 0000000..bc2229c Binary files /dev/null and b/img/old-world-science-globe.png differ diff --git a/img/ornate-blue-egg-clip-art.png b/img/ornate-blue-egg-clip-art.png new file mode 100644 index 0000000..6169b53 Binary files /dev/null and b/img/ornate-blue-egg-clip-art.png differ diff --git a/img/ornate-japanese-vase-drawing.png b/img/ornate-japanese-vase-drawing.png new file mode 100644 index 0000000..a82a683 Binary files /dev/null and b/img/ornate-japanese-vase-drawing.png differ diff --git a/img/ornate-metal-flag-holder.png b/img/ornate-metal-flag-holder.png new file mode 100644 index 0000000..8a250c4 Binary files /dev/null and b/img/ornate-metal-flag-holder.png differ diff --git a/img/owl-illustration.png b/img/owl-illustration.png new file mode 100644 index 0000000..52074f5 Binary files /dev/null and b/img/owl-illustration.png differ diff --git a/img/plain-yellow-jar-with-golden-berries-cartoon-image.png b/img/plain-yellow-jar-with-golden-berries-cartoon-image.png new file mode 100644 index 0000000..de33fcb Binary files /dev/null and b/img/plain-yellow-jar-with-golden-berries-cartoon-image.png differ diff --git a/img/plant-dye-bottle-illustration.png b/img/plant-dye-bottle-illustration.png new file mode 100644 index 0000000..a93bd5a Binary files /dev/null and b/img/plant-dye-bottle-illustration.png differ diff --git a/img/plant-leaves-illustration.png b/img/plant-leaves-illustration.png new file mode 100644 index 0000000..3f45022 Binary files /dev/null and b/img/plant-leaves-illustration.png differ diff --git a/img/playful-cartoon-sloth-image.png b/img/playful-cartoon-sloth-image.png new file mode 100644 index 0000000..21fc28c Binary files /dev/null and b/img/playful-cartoon-sloth-image.png differ diff --git a/img/precious-gemstones-mineral-rock.png b/img/precious-gemstones-mineral-rock.png new file mode 100644 index 0000000..62f7c6c Binary files /dev/null and b/img/precious-gemstones-mineral-rock.png differ diff --git a/img/prehistoric-fish-skeleton.png b/img/prehistoric-fish-skeleton.png new file mode 100644 index 0000000..13f3353 Binary files /dev/null and b/img/prehistoric-fish-skeleton.png differ diff --git a/img/prehistoric-fossil-drawing.png b/img/prehistoric-fossil-drawing.png new file mode 100644 index 0000000..beb67da Binary files /dev/null and b/img/prehistoric-fossil-drawing.png differ diff --git a/img/quill-and-ink-jar-clip.png b/img/quill-and-ink-jar-clip.png new file mode 100644 index 0000000..9a9147b Binary files /dev/null and b/img/quill-and-ink-jar-clip.png differ diff --git a/img/rainbow-colored-frog.png b/img/rainbow-colored-frog.png new file mode 100644 index 0000000..9af04ec Binary files /dev/null and b/img/rainbow-colored-frog.png differ diff --git a/img/rainforest-root-system-illustration.png b/img/rainforest-root-system-illustration.png new file mode 100644 index 0000000..97b98ff Binary files /dev/null and b/img/rainforest-root-system-illustration.png differ diff --git a/img/rolled-up-light-brown-cloth.png b/img/rolled-up-light-brown-cloth.png new file mode 100644 index 0000000..ba09884 Binary files /dev/null and b/img/rolled-up-light-brown-cloth.png differ diff --git a/img/roman-coins-image.png b/img/roman-coins-image.png new file mode 100644 index 0000000..7b4c38f Binary files /dev/null and b/img/roman-coins-image.png differ diff --git a/img/roman-golden-coin-image.png b/img/roman-golden-coin-image.png new file mode 100644 index 0000000..9c429b8 Binary files /dev/null and b/img/roman-golden-coin-image.png differ diff --git a/img/roman-warrior-armored-clip-art.png b/img/roman-warrior-armored-clip-art.png new file mode 100644 index 0000000..b578eee Binary files /dev/null and b/img/roman-warrior-armored-clip-art.png differ diff --git a/img/samurai-warrior-illustration.png b/img/samurai-warrior-illustration.png new file mode 100644 index 0000000..8eaaf4d Binary files /dev/null and b/img/samurai-warrior-illustration.png differ diff --git a/img/satellite-antenna-schematic.png b/img/satellite-antenna-schematic.png new file mode 100644 index 0000000..fea9159 Binary files /dev/null and b/img/satellite-antenna-schematic.png differ diff --git a/img/scientific-colorful-beakers-cartoon.png b/img/scientific-colorful-beakers-cartoon.png new file mode 100644 index 0000000..269c688 Binary files /dev/null and b/img/scientific-colorful-beakers-cartoon.png differ diff --git a/img/scientific-glassware-cartoon.png b/img/scientific-glassware-cartoon.png new file mode 100644 index 0000000..80877bb Binary files /dev/null and b/img/scientific-glassware-cartoon.png differ diff --git a/img/seashell-worm-cartoon.png b/img/seashell-worm-cartoon.png new file mode 100644 index 0000000..994a107 Binary files /dev/null and b/img/seashell-worm-cartoon.png differ diff --git a/img/shark-tooth-anatomy-drawing.png b/img/shark-tooth-anatomy-drawing.png new file mode 100644 index 0000000..2c5713c Binary files /dev/null and b/img/shark-tooth-anatomy-drawing.png differ diff --git a/img/silver-owl-coin-imagery.png b/img/silver-owl-coin-imagery.png new file mode 100644 index 0000000..0770faf Binary files /dev/null and b/img/silver-owl-coin-imagery.png differ diff --git a/img/skeleton-cartoon-head-image.png b/img/skeleton-cartoon-head-image.png new file mode 100644 index 0000000..4ba3728 Binary files /dev/null and b/img/skeleton-cartoon-head-image.png differ diff --git a/img/snake-cartoon-serpent.png b/img/snake-cartoon-serpent.png new file mode 100644 index 0000000..5d41c9a Binary files /dev/null and b/img/snake-cartoon-serpent.png differ diff --git a/img/solar-system-planets-orbit-illustration.png b/img/solar-system-planets-orbit-illustration.png new file mode 100644 index 0000000..42683d4 Binary files /dev/null and b/img/solar-system-planets-orbit-illustration.png differ diff --git a/img/space-exploration-robot-icon.png b/img/space-exploration-robot-icon.png new file mode 100644 index 0000000..d169c2a Binary files /dev/null and b/img/space-exploration-robot-icon.png differ diff --git a/img/space-galaxy-nebula-drawing.png b/img/space-galaxy-nebula-drawing.png new file mode 100644 index 0000000..618cae6 Binary files /dev/null and b/img/space-galaxy-nebula-drawing.png differ diff --git a/img/space-rocket-engine-blueprint.png b/img/space-rocket-engine-blueprint.png new file mode 100644 index 0000000..cf31bd9 Binary files /dev/null and b/img/space-rocket-engine-blueprint.png differ diff --git a/img/steampunk-book-and-goggles-image.png b/img/steampunk-book-and-goggles-image.png new file mode 100644 index 0000000..2ef5e15 Binary files /dev/null and b/img/steampunk-book-and-goggles-image.png differ diff --git a/img/stone-wall-paving-cartoon.png b/img/stone-wall-paving-cartoon.png new file mode 100644 index 0000000..6b61349 Binary files /dev/null and b/img/stone-wall-paving-cartoon.png differ diff --git a/img/tea-set-ceramic-illustration.png b/img/tea-set-ceramic-illustration.png new file mode 100644 index 0000000..d3880e9 Binary files /dev/null and b/img/tea-set-ceramic-illustration.png differ diff --git a/img/tooth-clip-art.png b/img/tooth-clip-art.png new file mode 100644 index 0000000..9e9bf4f Binary files /dev/null and b/img/tooth-clip-art.png differ diff --git a/img/toucan-cartoon-character.png b/img/toucan-cartoon-character.png new file mode 100644 index 0000000..5244c5a Binary files /dev/null and b/img/toucan-cartoon-character.png differ diff --git a/img/traditional-japanese-sword-set-display.png b/img/traditional-japanese-sword-set-display.png new file mode 100644 index 0000000..791255c Binary files /dev/null and b/img/traditional-japanese-sword-set-display.png differ diff --git a/img/traditional-japanese-temple.png b/img/traditional-japanese-temple.png new file mode 100644 index 0000000..52a9755 Binary files /dev/null and b/img/traditional-japanese-temple.png differ diff --git a/img/treasure-chest-clip-art.png b/img/treasure-chest-clip-art.png new file mode 100644 index 0000000..243535e Binary files /dev/null and b/img/treasure-chest-clip-art.png differ diff --git a/img/tree-microscopic-life-clip-art.png b/img/tree-microscopic-life-clip-art.png new file mode 100644 index 0000000..45e96c5 Binary files /dev/null and b/img/tree-microscopic-life-clip-art.png differ diff --git a/img/tribal-triceratops-skull.png b/img/tribal-triceratops-skull.png new file mode 100644 index 0000000..724198a Binary files /dev/null and b/img/tribal-triceratops-skull.png differ diff --git a/img/tropical-palm-trees-drawing.png b/img/tropical-palm-trees-drawing.png new file mode 100644 index 0000000..729ce71 Binary files /dev/null and b/img/tropical-palm-trees-drawing.png differ diff --git a/img/tropical-plant-leaf-artwork.png b/img/tropical-plant-leaf-artwork.png new file mode 100644 index 0000000..abc9786 Binary files /dev/null and b/img/tropical-plant-leaf-artwork.png differ diff --git a/img/tropical-rainbow-toucan-cartoon.png b/img/tropical-rainbow-toucan-cartoon.png new file mode 100644 index 0000000..b369569 Binary files /dev/null and b/img/tropical-rainbow-toucan-cartoon.png differ diff --git a/img/tyrannosaurus-jaw-cartoon.png b/img/tyrannosaurus-jaw-cartoon.png new file mode 100644 index 0000000..fdef882 Binary files /dev/null and b/img/tyrannosaurus-jaw-cartoon.png differ diff --git a/img/viking-ship-colorful-cartoon.png b/img/viking-ship-colorful-cartoon.png new file mode 100644 index 0000000..6affaed Binary files /dev/null and b/img/viking-ship-colorful-cartoon.png differ diff --git a/img/vintage-brass-microscope-icon.png b/img/vintage-brass-microscope-icon.png new file mode 100644 index 0000000..948b9a3 Binary files /dev/null and b/img/vintage-brass-microscope-icon.png differ diff --git a/img/vintage-gold-magnifying-glass.png b/img/vintage-gold-magnifying-glass.png new file mode 100644 index 0000000..7cd53ff Binary files /dev/null and b/img/vintage-gold-magnifying-glass.png differ diff --git a/img/vintage-metallic-butterfly-badge.png b/img/vintage-metallic-butterfly-badge.png new file mode 100644 index 0000000..b17d4cd Binary files /dev/null and b/img/vintage-metallic-butterfly-badge.png differ diff --git a/img/vintage-reading-glasses-on-book-image.png b/img/vintage-reading-glasses-on-book-image.png new file mode 100644 index 0000000..f2619a0 Binary files /dev/null and b/img/vintage-reading-glasses-on-book-image.png differ diff --git a/img/vinyl-record-3d-image.png b/img/vinyl-record-3d-image.png new file mode 100644 index 0000000..1b3ffc8 Binary files /dev/null and b/img/vinyl-record-3d-image.png differ diff --git a/img/vivid-rainbow-frog-cartoon.png b/img/vivid-rainbow-frog-cartoon.png new file mode 100644 index 0000000..5a06ef2 Binary files /dev/null and b/img/vivid-rainbow-frog-cartoon.png differ diff --git a/img/world-globe-cartoon-image.png b/img/world-globe-cartoon-image.png new file mode 100644 index 0000000..f318a7b Binary files /dev/null and b/img/world-globe-cartoon-image.png differ diff --git a/img/world-map-carta-art.png b/img/world-map-carta-art.png new file mode 100644 index 0000000..58341f7 Binary files /dev/null and b/img/world-map-carta-art.png differ diff --git a/img/world-map-compass-drawing.png b/img/world-map-compass-drawing.png new file mode 100644 index 0000000..b0f49ff Binary files /dev/null and b/img/world-map-compass-drawing.png differ diff --git a/img/world-map-globe-image.png b/img/world-map-globe-image.png new file mode 100644 index 0000000..6aa7cd6 Binary files /dev/null and b/img/world-map-globe-image.png differ diff --git a/index.html b/index.html index a242563..cebe28b 100644 --- a/index.html +++ b/index.html @@ -41,12 +41,15 @@

          Where Shall You Begin?

          + +
        + +
        Chapter Two

        Inventions & Ideas

        @@ -47,8 +49,13 @@
        + +

        Accidental Inventions

        + + +

        History honours the inventor who toiled — but some of the most transformative discoveries arrived uninvited, like guests who turn out to be more interesting than anyone on the invitation list.

        Penicillin: The Mould That Saved Millions

        @@ -63,10 +70,16 @@

        The Microwave Oven: A Melted Candy Bar

        + + +

        In 1945, Percy Spencer, an engineer at Raytheon, was standing near a radar magnetron when he noticed something odd: the candy bar in his pocket had melted. Spencer, a self-taught engineer who had been designing radar equipment during the war, did not throw the candy away. He sent an assistant for popcorn kernels, which promptly popped when placed near the magnetron. An egg was next — it exploded spectacularly.

        Within a year, Raytheon had filed a patent for the first microwave oven. It was called the Radarange, stood nearly six feet tall, weighed 750 pounds, and cost roughly $5,000 (approximately $68,000 in today's money). It would take another twenty years before countertop microwaves became affordable — and another decade after that before people stopped being afraid of them. Today, over 90% of American households own one.

        Post-it Notes: A Failure That Stuck

        + + +

        In 1968, 3M scientist Spencer Silver was trying to develop a super-strong adhesive. Instead, he invented a super-weak one — a glue that formed tiny, easily detached spheres that would stick to a surface but peel away without leaving any residue. For five years, no one at 3M could figure out what to do with it. Silver promoted his adhesive at internal seminars, where it attracted approximately no interest.

        Then, in 1974, another 3M scientist named Art Fry grew frustrated that the bookmarks kept falling out of his hymnal during choir practice. He remembered Silver's adhesive, applied it to a strip of paper, and the Post-it Note was born — or rather, conceived. It took four more years before 3M agreed to manufacture it, and even then the initial test marketing in four cities in 1977 was a flop. Free samples were the key: once people used them, they could not stop. By 1980, Post-it Notes were nationwide. By the end of the decade, they were everywhere.

        @@ -76,7 +89,10 @@

        The Printing Press & the Shape of the World

        + +
        + Did You Know?
        Before the printing press, a single hand-copied Bible could take a scribe two to three years to complete and cost more than a house. Within fifty years of Gutenberg's invention, an estimated 20 million volumes had been printed in Europe. The price of a book fell by more than 80%. It remains the single most dramatic price drop in the history of information.
        @@ -92,13 +108,19 @@

        Yet the machine he built had consequences no one could have predicted. Within fifty years, Europe had printed more books than all of the continent's scribes had produced in a thousand. The Reformation, the scientific revolution, the Enlightenment — none of these happens in the same way, or perhaps at all, without cheap, widely available text. The printing press did not merely spread knowledge. It created the conditions under which knowledge could challenge power.

        -
        § § §
        +

        Forgotten Inventions

        + + +

        Not every great idea survives its moment. Some were ahead of their time; others were simply outrun by louder, faster, or cheaper alternatives. Here are two that deserved better.

        The Pneumatic Railway

        + + +

        In the 1860s, the London Pneumatic Despatch Company built a network of underground tubes through which freight carriages were propelled by differential air pressure — essentially, a giant version of the capsules used in hospital pharmacies to send prescriptions between floors. A pipe laid beneath the streets of London carried carriages at up to 40 miles per hour. For a few heady years, it seemed as though the future of urban transport would be pneumatic.

        The system was extraordinarily expensive to build and maintain. Seals leaked. Valves froze. The arrival of electric trams and underground railways made the pneumatic tubes redundant almost as soon as they were installed. By 1875, the experiment was over. The tunnels were sealed and forgotten. But the core idea — moving objects through tubes using air pressure — never entirely went away. It survives in pneumatic mail systems, bank drive-throughs, and the perennial dream of Elon Musk's Hyperloop, which is, at its heart, a pneumatic railway wearing a Silicon Valley T-shirt.

        @@ -112,6 +134,8 @@

        The Lightbulb: A Team Effort

        + +
        A glowing vintage lightbulb

        The incandescent lamp — not the invention of one man, but the product of decades of collective problem-solving.

        @@ -129,6 +153,8 @@

        How the Zipper Was Invented

        + +

        The zipper is one of those inventions so perfectly suited to its purpose that it seems inevitable — as though it had always existed, like the wheel or the door hinge. In fact, it took more than forty years of false starts, patent disputes, and consumer indifference before anyone wore one.

        In 1851, Elias Howe — the same man who invented the sewing machine — received a patent for an "Automatic, Continuous Clothing Closure." He never seriously marketed it, perhaps because his sewing machine was consuming all his attention. Forty-two years later, in 1893, a Chicago engineer named Whitcomb Judson invented a "clasp locker" for shoes and displayed it at the 1893 Chicago World's Fair. It was complicated, unreliable, and tended to jam. Judson's Universal Fastener Company sold very few.

        @@ -142,6 +168,9 @@

        Strange Patents

        + + +

        The patent office is a museum of human ambition — including the ambitions that probably should have stayed in the garage. A few selections from the archives of earnest ingenuity:

          @@ -164,6 +193,7 @@
          +

          Timeline of Inventions That Changed Everything

          • c. 3500 BCE — The wheel (Mesopotamia). Originally used for pottery, not transport.
          • @@ -182,9 +212,13 @@
            + +

            The Eureka Myth

            + +

            The stories we tell about invention always seem to feature a flash of insight — Archimedes in the bath, Newton under the apple tree, Fleming with his mouldy Petri dish. These moments of sudden clarity make for good narratives, but they are almost always The best ideas arrive in disguise. the last step in a long climb. Archimedes had been working on the problem of specific gravity for months before he noticed the water level. Newton had spent years on the mathematics of gravitation before the apple (if it fell at all) gave him a convenient way to explain it to others. Fleming saw the mould because he had trained himself, over decades, to pay attention to anomalies that others would discard as contamination.

            The eureka myth is not harmless. It obscures the real conditions of invention: persistence, collaboration, institutional support, and — often — sheer stubbornness in the face of indifference. The lightbulb, the zipper, the printing press — none of these sprang fully formed from a single mind. Each was the product of many hands, many setbacks, and many moments where someone chose not to give up. That the popular versions of these stories credit a single genius is not an accident. It is a cultural preference, and perhaps a dangerous one.

            diff --git a/maps.html b/maps.html index 98c58a4..46864ee 100644 --- a/maps.html +++ b/maps.html @@ -28,6 +28,8 @@
          + +
          Chapter Four

          Maps & Places

          @@ -51,6 +53,8 @@

          Here Be Dragons

          + +
          An ornate globe showing the continents in muted colours

          A Renaissance-era globe: half knowledge, half imagination.

          @@ -69,8 +73,13 @@
          + +

          Terra Incognita

          + + +

          Terra incognita — unknown land. The phrase appears again and again on maps from the 15th through 18th centuries, marking the boundaries of European understanding. These were not empty spaces; they were spaces filled with possibility. Every terra incognita on a map was a question asked in ink: What is there? Who lives there? What grows, what shines, what breathes in the places we have not yet reached?

          Perhaps the most remarkable thing about terra incognita is how it has never truly disappeared. Today, our maps are satellite-verified down to the metre, and yet enormous portions of the world remain fundamentally unknown — not because we cannot see them, but because we have not truly explored them. More of the surface of Venus has been mapped at high resolution than the floor of our own oceans. We have mapped more of Mars's surface at high resolution than our own ocean floor.

          @@ -99,14 +108,20 @@
          + Did You Know?
          On a standard Mercator projection, Antarctica appears absurdly vast. In reality, it is larger than the United States and Mexico combined. Meanwhile, Algeria — which on Mercator looks roughly the size of Greenland — is in reality more than four times larger than Greenland. The map in your school classroom was lying to you, and it probably still is.

          + +

          Phantom Islands: Places That Never Were

          + + +

          For centuries, map-makers included islands that did not exist — and not as imaginative decoration, but as earnest assertions of fact. Sailors reported them. Captains charted them. Nations claimed them. Only gradually, sometimes over hundreds of years, did the truth emerge: these places were phantoms.

          Frisland

          @@ -120,6 +135,7 @@
          +

          Phantom Islands of Note

          • Frisland — Detailed phantom island south of Iceland; on maps from the 1550s to the 1660s.
          • @@ -135,6 +151,9 @@

            The Most Remote Place on Earth

            + + +

            In the middle of the South Atlantic Ocean, approximately 1,500 miles from the nearest continent, there exists a small volcanic island group called Tristan da Cunha. It is the most remote inhabited archipelago in the world. There is no airport. The only way to reach it is by ship — a journey of roughly six days from South Africa, and even then, the harbour is so treacherous that ships can often not land.

            Approximately 250 people live on the main island, nearly all of them descended from seven original settlers. The village, called Edinburgh of the Seven Seas, has one school, one small supermarket, one pub, and one doctor. The islanders speak a distinctive dialect of English that has evolved in isolation for nearly two hundred years. Cars are few. Internet connections are slow. The nearest neighbour is the island of St. Helena — Napoleon's final exile — 1,350 miles to the north.

            @@ -146,6 +165,9 @@

            Underground Cities

            + + +

            In the Cappadocia region of central Turkey, the soft volcanic rock called tuff has been carved into dwellings, churches, and entire cities for thousands of years. The most astonishing of these is Derinkuyu, an underground city descending at least eight levels — roughly 85 metres — beneath the surface, capable of sheltering as many as 20,000 people along with their livestock and food stores.

            Derinkuyu was not a temporary refuge. It was a fully functional subterranean metropolis, complete with ventilation shafts, freshwater wells, wine presses, oil lamps, stables, chapels, and a school. Its massive stone doors — circular millstones that could be rolled into place from the inside — could seal each level independently, making the city virtually impenetrable from without. It had been built and rebuilt across centuries, used by successive peoples — the Phrygians, the Persians, the early Christians — each expanding the tunnels deeper into the earth.

            @@ -161,6 +183,8 @@

            Psychogeography: Walking as an Act of Discovery

            + +

            In 1955, the French theorist Guy Debord coined the term psychogeography to describe "the study of the precise laws and specific effects of the geographical environment, consciously organised or not, on the emotions and behaviour of individuals." In plainer terms: the way a place feels — and the way that feeling changes how you move through it.

            Debord and the Situationists developed a practice called the dérive — the drift. A dérive involved walking through a city without a destination, letting the emotional textures of different neighbourhoods guide your path. You walk toward what attracts you. You turn away from what repels you. The result is a kind of lived map — one that has nothing to do with street names or transit routes and everything to do with atmosphere, memory, association, and desire.

            @@ -169,6 +193,7 @@
            +

            Key Figures in Psychogeography

            • Guy Debord — Coined the term in 1955; pioneered the dérive (drift).
            • @@ -182,6 +207,9 @@

              Borders Are Stranger Than You Think

              + + +

              National borders seem permanent, obvious, and inevitable — lines drawn by reason or nature. None of this is true. Borders are among the strangest artefacts of human civilisation, and the closer you look at them, the weirder they become.

                @@ -209,8 +237,13 @@
                + +

                The Cartographer's Paradox

                + + +

                Every map involves a trade-off. Mathematicians have proven that it is impossible to create a flat map of a spherical surface without distorting at least one of the following: area, shape, distance, or direction. This is not a technical limitation. It is a mathematical certainty, following from the fact that a sphere cannot be projected onto a plane without stretching or tearing.

                This means that every map — the one in your classroom, the one in your phone, the one in your imagination — is always, necessarily, a compromise. It can be accurate in one dimension and false in another, but it can never be simply true. The cartographer's art lies in choosing which truth to tell.

                diff --git a/natural-world.html b/natural-world.html index 35bf851..3232db1 100644 --- a/natural-world.html +++ b/natural-world.html @@ -28,6 +28,8 @@
              + +
              Chapter One

              The Natural World

              @@ -46,6 +48,8 @@

              Ancient Forests

              + +
              Sunlight filtering through an old-growth forest canopy

              Old-growth canopy in the Pacific Northwest. Some trees in this photograph germinated before the Magna Carta was signed.

              @@ -67,6 +71,8 @@

              The Deep Ocean

              + +
              A deep ocean scene with bioluminescent creatures

              The mesopelagic zone, 200–1,000 meters below the surface, where the last traces of sunlight fade and bioluminescence becomes the dominant light source.

              @@ -80,15 +86,22 @@
              +

              Did You Know?

              The underwater mountain range known as the Mid-Ocean Ridge is the longest mountain range on Earth — stretching over 65,000 kilometers around the planet. It is entirely submerged. Its volcanic peaks create new seafloor at a rate of roughly 5 centimeters per year, pushing tectonic plates apart in a slow, continuous remodeling of the planet's surface. Most of it has never been mapped at high resolution. We know more about the surface of Mars.


              + + + +

              Symbiosis: Living Together

              + +

              No organism exists in isolation. Symbiosis — from the Greek syn (together) and biōsis (living) — describes the close, long-term interactions between different biological species. These relationships fall along a spectrum from mutually beneficial to parasitic, and the natural world is riddled with arrangements so intricate that it becomes impossible to say where one organism ends and another begins.

              @@ -102,6 +115,7 @@
              +

              The Numbers of Life

              • An estimated 8.7 million eukaryotic species exist on Earth; only about 1.2 million have been formally described.
              • @@ -117,6 +131,8 @@

                Extremophiles: Life at the Edges

                + +

                For most of biology's history, life was thought to require moderate conditions — warm temperatures, neutral pH, liquid water, organic nutrients. The discovery of extremophiles shattered that assumption. These organisms don't merely tolerate extremes; they require them.

                Hyperthermophiles thrive in hydrothermal vents at temperatures exceeding 120°C. Psychrophiles multiply in Antarctic sea ice at temperatures as low as −12°C. Acidophiles grow at pH near zero — roughly the acidity of battery acid. Halophiles flourish in salt lakes where the salinity can reach eight to ten times that of seawater. Radiophiles — such as Deinococcus radiodurans — can survive radiation doses 3,000 times what would kill a human, rebuilding their shattered genome from fragments in a matter of hours.

                @@ -126,11 +142,15 @@

                Extremophiles have already proven useful to humans: Thermus aquaticus, discovered in a Yellowstone hot spring, gave us Taq polymerase — the enzyme that makes the polymerase chain reaction (PCR) possible, and with it, modern genetics, DNA fingerprinting, and the rapid COVID-19 tests that reshaped daily life in the 2020s. A creature from a boiling pool helped map a pandemic.

                -

                § § §

                + + +

                Migration: The Longest Journeys

                + +

                Migration is not merely movement — it is a fixed, inherited pattern of seasonal travel that rivals any human voyage in endurance and far exceeds it in precision. The Arctic tern makes a round-trip of roughly 71,000 kilometers each year, flying from Arctic to Antarctic and back, experiencing two summers and more daylight than any other creature. Over its lifetime, a single tern may fly the equivalent of three trips to the moon and back.

                @@ -159,6 +179,8 @@

                Bizarre Animal Behaviors

                + +

                The natural world does not lack for strangeness — only for observers patient enough to notice it.

                The mimic octopus (Thaumoctopus mimicus), discovered in 1998 off the coast of Indonesia, can imitate at least fifteen different species, flattening its body and swimming like a flounder, spreading its arms like a lionfish's venomous spines, or nestling into the sand like a sea snake. It chooses its disguise based on which predator is nearby — performing a rapid, real-time cost-benefit analysis of danger using a brain the size of a walnut.

                @@ -172,7 +194,9 @@

                The burrowing owl lines the entrance to its burrow with animal dung — not out of slovenliness, but as a bait trap. Dung beetles, drawn by the smell, wander in and become dinner. It is, in effect, agriculture: the owl cultivates a resource, harvests it, and benefits from the yield. Tool use once thought unique to primates and corvids turns out to be everywhere, once you learn to look.

                -

                § § §

                + + +

                The Inexhaustible Ordinary

                @@ -181,6 +205,8 @@

                The extraordinary is not always far away or deep below. It is here, in the photosynthetic alchemy turning sunlight into sugar, in the mycorrhizal internet underfoot, in the barometric instincts of a storm-approaching flock. The natural world is not merely something to visit — it is something we are inside of, permanently, whether we remember it or not.

                + +

                Continue to Chapter Two: Inventions

                diff --git a/phenomena.html b/phenomena.html index 89c6c21..a1e9eb1 100644 --- a/phenomena.html +++ b/phenomena.html @@ -28,6 +28,8 @@
              + +
              Chapter Three

              Strange Phenomena

              @@ -48,6 +50,8 @@

              Ball Lightning

              + +

              Of all the phenomena catalogued in this chapter, perhaps none has been more stubbornly resistant to explanation than ball lightning. Witnesses across centuries and continents describe the same basic sequence: during or just after a thunderstorm, a luminous sphere — typically between 10 and 40 centimetres in diameter, though reports range from pea-sized to over a metre — appears, floats through the air for several seconds, and then either fades away silently or explodes with a sharp bang. The spheres are typically white, yellow, or orange, and they move slowly enough to be tracked by eye. They have been observed passing through glass windows, drifting down the aisles of aircraft, and even entering buildings through open doors, only to exit through walls.

              One of the earliest known written accounts comes from the English monk Gervase of Canterbury, dated 1195, though descriptions of similar phenomena appear in other medieval sources, though the phenomenon is almost certainly far older. In 1753, the Russian scientist Georg Richmann was killed by ball lightning while attempting to take measurements from his lightning rod apparatus with a lightning rod — one of the few confirmed fatalities. Modern surveys suggest that Surveys have found that roughly 3 to 6 per cent of respondents has observed ball lightning at some point, implying millions of witnesses worldwide.

              @@ -63,6 +67,8 @@
              + +
              @@ -77,6 +83,7 @@

              The mechanisms are multiple and complex. Expectation plays a central role — patients who believe a treatment will work tend to experience greater benefit. Classical conditioning also contributes: if you have previously experienced relief from a medication, a similar-looking pill can trigger the same physiological response. Brain imaging studies show that placebos activate the same regions — the prefrontal cortex, the anterior cingulate, the periaqueductal gray — that are activated by actual analgesics. The body, it seems, has its own pharmacy, and belief is the prescription that unlocks it.

              +

              The Nocebo Effect

              The placebo effect has a dark twin. When patients expect negative outcomes, they often experience them. In one remarkable study, participants told that a (harmless) cream might cause itchiness and redness developed genuine rashes at the application site. In clinical trials, the nocebo effect accounts for a significant share of reported side effects — even among patients receiving the placebo. The mind's power to heal is matched only by its power to harm.

              @@ -91,6 +98,8 @@

              Synesthesia

              + +

              Imagine tasting words. Imagine hearing colors. Imagine seeing the number 7 as an unmistakable shade of turquoise, or feeling the touch of a texture whenever you hear a musical note. For roughly 4% of the population, these experiences are not imaginary — they are automatic, consistent, and lifelong. This is synesthesia, a neurological phenomenon in which stimulation of one sensory or cognitive pathway automatically and involuntarily triggers a second pathway.

              The most common form is grapheme-color synesthesia, in which individual letters or numbers are perceived as inherently colored. For these synesthetes, the letter A might always appear red, or the number 3 might always be yellow. The associations are remarkably stable over time: test a grapheme-color synesthete once, then retest them decades later, and the pairings will be nearly identical. Other well-documented forms include chromesthesia (sound-to-color), lexical-gustatory (word-to-taste), and mirror-touch synesthesia, in which observing someone else being touched triggers a felt sensation of touch on the synesthete's own body.

              @@ -98,13 +107,14 @@

              Far from being a disorder, synesthesia is now understood as a harmless — and often beneficial — variant of human perception. Synesthetes frequently excel at memory tasks, as the additional sensory dimensions provide richer encoding. Many celebrated artists, musicians, and writers have been synesthetes, including Vladimir Nabokov, Olivier Messiaen, and David Hockney. Neuroimaging studies reveal that synesthetic experiences correspond to genuine activation in the relevant cortical regions: when a synesthete hears a note and "sees" a color, both the auditory cortex and the visual cortex light up. The experience, in other words, is real in every neurological sense.

              +

              Did You Know?

              The word synesthesia comes from the Greek syn (together) and aisthesis (sensation). The first medical description of coloured hearing dates to an 1812 thesis by the German physician Georg Tobias Ludwig Sachs, though the term itself came into medical use in the late nineteenth century, though descriptions of colored hearing appear in the writings of John Locke in 1690. The condition runs strongly in families and is once thought to be far more common in women than in men, though more recent research finds the gap may be much smaller than previously believed. Genetic studies suggest synesthesia has a heritable component, though the specific genes involved remain under investigation.

              -
              § § §
              +
              @@ -112,6 +122,8 @@

              Why Hot Water Can Freeze Faster Than Cold

              + +

              In 1963, a Tanzanian secondary school student named Erasto Mpemba was making ice cream in his cooking class. He noticed that warm milk-and-sugar mixture, placed directly into the freezer, froze more quickly than a cold mixture. His teachers told him he was mistaken. He persisted. When the physicist Denis Osborne visited his school, Mpemba asked him why hot water freezes faster than cold water. Osborne investigated, replicated the result, and in 1969 they co-authored a paper that gave the phenomenon its name.

              The Mpemba effect is deeply counterintuitive. If hot water must cool through the temperature that cold water starts at, how can it possibly reach the freezing point first? And yet, under the right conditions, it does. The effect has been observed in repeated experiments, though it is sensitive to the specifics of the setup — container shape, water volume, cooling rate, and the presence of dissolved gases all appear to matter.

              @@ -138,6 +150,8 @@

              Ferrofluid

              + +

              Imagine a liquid that dances. That climbs. That bristles into a landscape of terrifying, beautiful spikes the instant a magnet comes near. This is ferrofluid — a suspension of nanoscale magnetic particles in a carrier liquid (typically oil or water), coated with a surfactant that prevents the particles from clumping. The result is a jet-black, highly responsive fluid that behaves as though it were alive when exposed to a magnetic field.

              Each particle in a ferrofluid is roughly 10 nanometers across — small enough that thermal motion keeps them from settling under gravity. When a magnetic field is applied, the particles align with the field lines, and the fluid as a whole moves to follow. The spiky formations that appear on the surface of a ferrofluid are not random: they are an exact physical expression of the field's geometry, each spike representing a point where the magnetic force pulling the fluid upward exactly balances the surface tension and gravity pulling it flat. The pattern is called a rosenzweig instability, after the physicist who first described it mathematically.

              @@ -152,6 +166,8 @@

              Bioluminescence

              + +

              In the deepest parts of the ocean, where no sunlight has ever reached, the water glows. Bioluminescence — the production of light by living organisms — is one of nature's most widespread and yet least understood phenomena. It has evolved independently at least ninety times across the tree of life, appearing in bacteria, fungi, dinoflagellates, insects, fish, squid, jellyfish, and crustaceans. In the deep sea, where it is most common, an estimated 76% of pelagic taxa include bioluminescent species.

              The chemistry is elegant in its simplicity. An organic molecule called luciferin is oxidized by the enzyme luciferase, releasing energy in the form of a photon of light. Different organisms use different luciferins and luciferases, which is why bioluminescence appears in colors ranging from blue-green to yellow to red. Cold light, it is called — highly efficient — converting as much as 90 to 95 per cent of chemical energy into visible light at converting chemical energy into visible light, compared to roughly 5 to 10 per cent efficiency for an incandescent bulb and 15 to 25 per cent for a fluorescent lamp. No heat. No waste. Just light.

              @@ -173,6 +189,8 @@

              When the Universe Seems to Be Paying Attention

              + +

              You learn a new word, and within a week it appears in three different conversations, a novel you are reading, and a headline. You buy a blue car, and suddenly the road seems full of blue cars. You read about an obscure 1970s militant group, and then their name crops up in a documentary, a podcast, and a friend's offhand reference — all in the same month. You have not encountered the Baader-Meinhof phenomenon. Or rather, you have — and now you will encounter its name everywhere.

              The Baader-Meinhof phenomenon, also known as the frequency illusion, is a cognitive bias in which, after noticing something for the first time, you begin to notice it with disproportionate frequency. It is not that the thing has become more common — it is that your brain has begun selectively attending to it. The phenomenon has two components: selective attention, which directs your cognitive resources toward the newly salient stimulus, and confirmation bias, which reinforces the impression that the stimulus is appearing more often by ignoring all the times it does not.

              @@ -183,6 +201,8 @@
              + +
              @@ -192,6 +212,8 @@

              Earthquake Lights

              + +

              Minutes before an earthquake strikes, witnesses have sometimes observed something extraordinary: glowing orbs, sheets of light, or luminous columns rising from the ground or appearing in the sky above the affected area. These are earthquake lights, and they have been documented (in one form or another) for over a thousand years. A Japanese scroll from the 9th century depicts "strange light in the sky" before a major quake. European observers in the 17th and 18th centuries described "flashes like torches" and "luminous bands" accompanying seismic events in Italy. In the 20th century, photographs and video recordings have captured what appear to be genuine luminous phenomena associated with earthquakes in Mexico, Japan, and elsewhere.

              The mechanisms remain debated, but the leading hypothesis involves stress on crystalline rocks. When tectonic stress builds to a critical level, the mechanical deformation of certain minerals (particularly quartz) can generate electrical charges through the piezoelectric effect. These charges may ionize air molecules near the ground, producing visible light. Alternatively, rising gases released from stressed rock — including radon — might ionize the atmosphere. Some researchers have proposed that the lights result from rapidly changing magnetic fields generated by seismic activity, which could excite atmospheric gases in the same way that auroral displays are produced.

              @@ -206,6 +228,8 @@

              The Sailing Stones of Death Valley

              + +

              Rocks That Move Alone

              On the flat, cracked surface of Racetrack Playa — a dried lakebed in Death Valley National Park, California — heavy stones, some weighing over 300 kilograms, leave long trails etched into the ground behind them. The trails stretch for tens of meters, curving and sometimes doubling back on themselves. No one is pushing them. No animals are dragging them. There are no tread marks, no footprints, no signs of human intervention. For decades, the sailing stones of Racetrack Playa were one of the American West's most persistent natural mysteries.

              @@ -215,6 +239,7 @@

              The mystery was finally solved in 2014, when a team led by paleoclimatologist Richard Norris placed GPS-equipped stones on the playa and set up a time-lapse camera system. What they captured was extraordinary. On winter nights, a thin layer of ice forms on the shallow ephemeral pond that covers part of the playa. As the sun rises and the ice begins to break up, the wind pushes large sheets of ice — and the ice sheets push the rocks embedded within them, causing them to slide slowly across the muddy surface at speeds of roughly 3 to 5 meters per minute. The trails are carved by the rocks dragging through the soft sediment beneath the water. The solution was elegant, but the phenomenon itself remains no less wondrous: to see it, you need perfect conditions — water, ice, sun, and wind — all arriving in the right sequence. The playa knows the schedule, even if we do not.

              +

              By the Numbers: Racetrack Playa

              • Elevation: 1,132 m (3,714 ft) above sea level
              • @@ -234,6 +259,8 @@

                In Summary

                + +

                The phenomena gathered in this chapter share something essential: each one resists easy explanation, and each one rewards close attention. Ball lightning, the Mpemba effect, and earthquake lights remind us that physics is not a finished book — there are chapters yet to be written. The placebo effect and synesthesia reveal that the boundary between body and mind is far more porous than we once assumed. The Baader-Meinhof phenomenon shows how much of what we perceive is shaped by what we have learned to notice. Ferrofluid and bioluminescence demonstrate that matter and life are capable of astonishments that outstrip the human imagination. And the sailing stones of Death Valley prove that even the most inexplicable phenomena, given enough patience and the right instruments, can be understood — though understanding them only makes them more remarkable.

                Strange phenomena do not mean a broken universe. They mean a universe that continues to exceed our models.

                diff --git a/space.html b/space.html index 222747a..3fb0fb1 100644 --- a/space.html +++ b/space.html @@ -28,6 +28,8 @@
              + +
              Chapter Six

              Space & Beyond

              @@ -51,6 +53,8 @@
              + +

              Looking Back in Time

              Light travels at roughly 300,000 kilometres per second — the fastest anything can move through the universe. But even at that speed, crossing cosmic distances takes a very long time. The light from the Sun takes just over eight minutes to reach your eyes. The light from Proxima Centauri takes more than four years. The light from the Andromeda Galaxy takes 2.5 million years.

              @@ -67,9 +71,13 @@
              + +

              Neutron Stars: The Impossible Objects

              + +
              A brilliant blue-white star remnant surrounded by an ethereal nebula shell

              A neutron star is the compressed core of a massive star that has exploded. It spins, it beams, it distorts the very fabric of spacetime around it. Photo: Unsplash.

              @@ -80,6 +88,7 @@

              A teaspoon of neutron star material would weigh about 6 trillion tonnes — roughly equivalent to cramming Mount Everest into a sugar cube. These objects spin at terrifying speeds; some complete hundreds of rotations per second. They possess magnetic fields a trillion times stronger than Earth's. They are, by any reasonable standard, impossible — yet they exist in their hundreds of millions across the Milky Way, quiet and fast-spinning, like cosmic lighthouses beaming radio waves into the void.

              +

              Neutron Star Facts

              • Diameter: approximately 20 km (about the size of a small city)
              • @@ -96,6 +105,9 @@

                The Invisible 95%

                + + +

                Everything you have ever seen, touched, or read about — every star, planet, galaxy, cloud of gas, and speck of dust — makes up roughly 5% of the total universe. The remaining 95% consists of two forces we cannot see, cannot touch, and only barely understand: dark matter and dark energy.

                Dark matter, which accounts for about 27% of the universe, reveals itself through gravity. Galaxies rotate too fast; galaxy clusters bend light in ways visible matter cannot explain; the large-scale structure of the universe wouldn't hold together without it. Something is there, exerting gravitational pull, making the math work, and it vastly outweighs everything made of atoms. But it does not emit, absorb, or reflect light. It is invisible in the most literal sense.

                @@ -103,6 +115,7 @@

                Dark energy, comprising roughly 68% of the universe, is even stranger. In 1998, astronomers discovered that the universe is not just expanding — the expansion is accelerating. Something is pushing everything apart, growing stronger as space itself grows larger. We call it dark energy because we have no idea what it actually is. It may be an intrinsic property of space, a new kind of field, or a sign that our understanding of gravity is incomplete. It is, by a wide margin, the dominant force in the cosmos, and nobody can explain it.

                +

                Did You Know?

                The name "dark" in dark matter and dark energy doesn't mean they are literally dark — it means we are completely in the dark about what they are. Physicists sometimes refer to the 95% as "the embarrassing part" of cosmology. A Nobel Prize was awarded in 2011 for the discovery of the universe's accelerating expansion, and we still don't know what it is.

                @@ -113,6 +126,8 @@

                The Voyager Golden Record

                + +
                A gold-anodized record mounted on a spacecraft, shining against deep space

                The Golden Record, mounted on each Voyager spacecraft, is etched with instructions for playback in scientific notation. If found, it would be the first audio ever heard from another civilisation. Photo: Unsplash.

                @@ -130,6 +145,8 @@

                Pale Blue Dot

                + +
                "That's here. That's home. That's us. On it everyone you love, everyone you know, everyone you ever heard of, every human being who ever was, lived out their lives."

                On February 14, 1990, at Carl Sagan's request, NASA commanded the Voyager 1 spacecraft to turn its camera around and take one last photograph of its home. From a distance of roughly 6 billion kilometres — beyond the orbit of Neptune — the resulting image showed Earth as a tiny point of light, less than a pixel wide, suspended in a beam of scattered sunlight.

                @@ -137,6 +154,7 @@

                Sagan called it the "Pale Blue Dot" and delivered what may be the most beautiful paragraph ever spoken about our planet: a meditation on the absurd smallness of the stage on which all of human history has played out, and an argument, implicit and powerful, for kindness. Every conqueror's army, every emperor's empire, every holy city and every terrible war — all of it took place on that barely visible speck. The photo has no borders on it. It was taken from too far away to show any.

                +

                About the Image

                • Take date: February 14, 1990
                • @@ -150,8 +168,13 @@
                  + +

                  The Great Attractor

                  + + +

                  Something enormous is pulling our entire galaxy — along with tens of thousands of others — toward it at about 600 kilometres per second. We call it the Great Attractor, and we cannot see it, because it is located in the direction of the plane of the Milky Way, where dust and gas obscure our view.

                  We know it is there because of the motion it creates. The Milky Way is already moving toward the Great Attractor at considerable speed, along with our local group of galaxies and the much larger Virgo Cluster. The combined gravitational pull required to drag that much mass requires an object — or concentration of mass — of staggering proportions: roughly 3–5 × 1016 solar masses, a region called the Laniakea Supercluster, of which we are a small suburban outpost. Even larger structures — walls, filaments, and voids that span hundreds of millions of light-years — appear to make up the cosmic web, the large-scale architecture of the universe.

                  @@ -159,6 +182,7 @@

                  The Great Attractor is not itself an object. It is a gravitational focal point, a knot in the web, a place where an absurd amount of matter has gathered over billions of years. Our galaxy will arrive there — or rather, "there" will be reshaped by the time we get close — in roughly 150 billion years, though dark energy's accelerating expansion may prevent this convergence entirely, assuming nothing tears the universe apart first.

                  +

                  Did You Know?

                  The Laniakea Supercluster, which contains the Great Attractor, contains roughly 100,000 galaxies stretched across 520 million light-years. The name is Hawaiian; it means "immense heaven." Our Milky Way sits on the outer fringes, like a distant suburb of a city we cannot see the centre of.

                  @@ -168,6 +192,9 @@

                  Rogue Planets

                  + + +

                  Not every planet has a star. Somewhere between the glittering systems, in the vast and frigid spaces where no sun shines, rogue planets drift alone — ejected from their birth systems by gravitational encounters, sent tumbling through the galaxy on paths no orbit governs. Current estimates suggest there may be billions of them in the Milky Way alone, perhaps even more than there are stars.

                  These worlds can be enormous — some are gas giants, many times the mass of Jupiter — or they can be rocky, Earth-sized, and utterly dark. Without a sun, their surfaces would be frozen solid, but some may retain internal heat, and tidal forces or radioactive decay could sustain subsurface oceans of liquid water. In other words, it is not impossible that some rogue planets harbour life, in the warm dark beneath kilometres of ice, lit only by the faint glow of deep-sea vents, orbiting nothing, warmed by nothing, alive in spite of everything.

                  @@ -175,6 +202,7 @@

                  The first rogue planets were discovered in 2000, and many more have been identified since, including a gas giant designated CFBDSIR J2149−0403, floating about 130 light-years away. Since then, surveys have identified numerous candidates. The upcoming Nancy Grace Roman Space Telescope is expected to find hundreds more. Each one is a world without a sun, a story without a beginning — or at least, without the beginning we always assumed every planet must have.

                  +

                  Rogue Planet Facts

                  • Estimated number in the Milky Way: billions to trillions