-
Notifications
You must be signed in to change notification settings - Fork 1
/
choice.html
66 lines (51 loc) · 1.23 KB
/
choice.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Choice</title>
<meta name="description" content="A fleeting moment of certainty">
<style>
body {
margin: 4em;
line-height: 1.5;
max-width: 34em;
}
p {
margin-block: 2.25em;
}
h4 {
font-family: sans-serif;
}
@media (width < 30em) {
body {
margin: 2em;
}
}
@media (prefers-color-scheme: dark) {
body {
background-color: #222;
color: #f0f0e7;
}
}
</style>
</head>
<body>
<h4>Choice</h4>
<p>
Once I was having a dream. I don't remember the dream, but it wasn't a pleasant
one (not a nightmare, just not a pleasant one).
</p>
<p>
Suddenly, I realized that I don't have to have this dream if I don't want to. I
didn't realize that I was in a dream, or that I could control it, or could have
a different one – no, none of that. I just had this thought arise from somewhere
that I don't have to have this dream if I don't want to.
</p>
<p>
Not knowing what else to do, I started focusing on my breath. And, really, I
stopped having that dream. After a while, I dissolved into a dreamless sleep.
</p>
<p>I woke up. And wondered if that trick works when I’m awake.</p>
</body>
</html>