:root {
  --theme-light-color: #212121;
  --theme-light-bg: #cccccc;
  --theme-dark-color: #cccccc;
  --theme-dark-bg: #222222;
  --theme-test: #000000;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}

body {
  background-color: var(--theme-light-bg);
  color: var(--theme-light-color);
  box-sizing: border-box;
  padding: 1rem;
  margin: 1rem;
  font-size: 1.6rem;
}
body.dark-theme {
  background-color: var(--theme-dark-bg);
  color: var(--theme-dark-color);
}

.wrapper {
  display: grid;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.8;
}

.header {
  background-color: #fddca9;
  color: #181307;
}

.nav__list {
  display: flex;
  justify-content: space-between;
}
.nav__list li {
  list-style-type: none;
}

.fictional {
  color: #ff2200;
  background-color: #ccffcc;
}

.fict2 {
  font: inherit;
}
