:root {
  --color: black;
  --red: rgb(159 49 26);
  --blue: rgb(41 134 186);
  --dark-red: rgb(134 35 24);
  --yellow: rgb(223 250 110);
  --global-width: 850px;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  color: var(--color);
}

html,
body {
  background-color: var(--red);
}

h1 {
  text-align: center;
}

h2 {
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
}

hr {
  margin: 5.5em auto 3.5em;
  max-width: var(--global-width);
  background-color: black;
  height: 1px;
  border: none;
}
