/*
 * Base reset shared by every page. Keep this first in the stylesheet order.
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  background: #000;
}
a {
  color: inherit;
  text-decoration: inherit;
}
::selection {
  background-color: #152542;
  color: #fff;
}
