“You think that when we look at a map, what we really see is ourselves. After you first saw Inception, you sat silent in the theater for six hours. It freaks you out to realize that everyone around you has a skeleton inside them. You have really looked at your hands.” —xkcd
<!DOCTYPE html>
<meta charset="utf-8">
<style>
body {
background: url(pierce.png);
background-size: 1280px 1280px;
animation-duration: 20s;
animation-name: slide;
animation-timing-function: linear;
animation-iteration-count: infinite;
}
@keyframes slide {
from { background-position: 0 0; }
to { background-position: -1280px -1280px; }
}
</style>
<body>