:root {
  --bg: #000000;
  --fg: #ffffff;
  --muted: #888888;
}

[data-theme="light"] {
  --bg: #ffffff;
  --fg: #000000;
  --muted: #666666;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--fg);
  font-family: "Courier New", Courier, monospace;
}

.cryptedmail:after {
	content: attr(data-name) "@" attr(data-domain) "." attr(data-tld);
}

.toggle {
  position: fixed;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--fg);
  font-size: 25px;
  cursor: pointer;
}

.toggle:hover {
  color: var(--muted);
}

.container {
  max-width: 420px;
  margin: 0 auto;
  padding: 64px 24px 24px;
}

pre {
  margin: 0;
  line-height: 1.3;
  white-space: pre;
  font-size: 20px;
}

a {
  color: var(--fg);
  text-decoration: none;
}

a:hover {
  color: var(--muted);
}

footer {
position: fixed;
bottom: 0px;
left: 1rem;
right: 0px;
margin-bottom: 1rem;
}


