:root {
  --bg-main: #121212;
  --bg-secondary: #181818;
  --bg-tertiary: #202020;

  --text-primary: #ffffff;
  --text-secondary: #b3b3b3;
  --text-muted: #777;

  --accent: #00d4d4;

  --border: #2a2a2a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg-main);
  color: var(--text-primary);
  font-family: system-ui, -apple-system, sans-serif;
}

.section-div {
  display: flex;
  flex-direction: column;

  background: var(--bg-secondary);
  border-radius: 20px;
  border: 3px solid var(--accent);
  padding: 10px;
  margin: 50px auto;
  gap: 10px;

  max-width: 700px;
}

.section-header {
  justify-self: center;
  text-align: center;
}

.inner-div {
  background: var(--bg-tertiary);
  border-radius: 10px;
  border: 3px solid var(--border);
  padding: 10px;
}

.inner-text {
  font-weight: 200;
  font-size: 1.2rem;
  text-align: center;
}

.subsection-header {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.code-block {
  background: var(--bg-main);
  border-radius: 8px;
  border: 1px solid var(--border);
  padding: 12px;
  font-family: monospace;
  font-size: 0.9rem;
  color: var(--accent);
  overflow-x: auto;
  margin-top: 8px;
  white-space: pre;
}

code {
  font-family: monospace;
  font-size: 0.9rem;
  color: var(--accent);
}

.accent-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 1rem;
  transition: opacity 0.2s;
}

.accent-link:hover {
  opacity: 0.75;
}