/* THEME VARIABLES */

:root {
  --bg: #0000aa;
  --fg: #55ffff;
  --action: #feff58;
  --secondary-bg: #00aaaa;
  --secondary-fg: #000;
  --footer-fg: #02a7a8;
  --footer-bg: #000;
  --footer-action: #a8a8a8;
  --danger-bg: #a80202;
  --danger-fg: #fcfc54;
  --terminal-bg: #000;
  --terminal-fg: #fff;
}

/* FONT FACES */

@font-face {
  font-family: 'Perfect-DOS-VGA-437';
  src: url('/~/fonts/perfect-dos.woff') format('woff'), url('/~/fonts/perfect-dos.svg#Perfect-DOS-VGA-437') format('svg'),
    url('/~/fonts/perfect-dos.eot'), url('/~/fonts/perfect-dos.eot?#iefix') format('embedded-opentype');
  font-weight: normal;
  font-style: normal;
}

/* GLOBAL STYLE SETUP */

*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: 300;
  box-sizing: border-box;
  outline: none;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
  user-select: none;
  cursor: pointer;
}

html,
body,
body > div {
  width: 100%;
  height: 100%;
  background: var(--bg);
  cursor: url('/~/images/cursor.png') 5 10, auto;
}

body {
  display: flex;
  flex-direction: column;
  font-family: 'Perfect-DOS-VGA-437';
  font-weight: 300;
  color: var(--fg);
  font-size: 18px;
  line-height: 24px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  user-select: none;
  overflow: hidden;
  padding: 16px;
}

*:hover {
  cursor: url('/~/images/cursor.png') 5 10, auto;
}

input,
button {
  font-family: 'Perfect-DOS-VGA-437';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

table {
  border-collapse: collapse;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 18px;
  line-height: 24px;
}

article {
  padding: 16px;
}
