/* Variables: define a color once here, use it everywhere below.
   Change the value on this line and the whole site changes. */
:root {
  --bg: #101010;
  --text: #e8e8e8;
  --accent: #b00020;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Verdana, Geneva, sans-serif;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  font-family: Verdana, Geneva, sans-serif;
}

.records-strip {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
}
.records-strip img {
  width: 150px;
}

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

a:visited {
  color: #7a4a8c;
}

a:hover {
  color: #ffffff;
  text-decoration: underline;
}

main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

#journal {
  grid-column: 1 / -1;
}

main section {
  border: 2px solid var(--accent);
  padding: 15px;
  background: #1a1a1a;
}

main section h2 {
  margin-top: 0;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 5px;
}

nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
}

nav {
  border-bottom: 2px solid var(--accent);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

header {
  border: 2px solid var(--accent);
  background: #1a1a1a;
  padding: 20px;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 3rem;
  letter-spacing: 4px;
}

#journal time {
  font-family: "Courier New", Courier, monospace;
  color: #888;
  font-size: 0.85rem;
}

body.light-mode {
  --bg: #f0f0f0;
  --text: #101010;
}
