@font-face {
  font-family: "KanitCustom";
  src: url("polices/Kanit_Regular.ttf") format("truetype");
}

@font-face {
  font-family: "BebasCustom";
  src: url("polices/BebasNeue_Regular.ttf") format("truetype");
}

:root {
  --bg: #000;
  --white: #fff;
  --red: #ff3b30;
  --green: #3cff78;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--white);
  height: 100%;
  overflow: hidden;
  font-family: "KanitCustom", Arial, sans-serif;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
}

#game-wrapper {
  width: 800px;
  height: 600px;
  box-shadow: 0 0 30px rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.08);
}

canvas {
  display: block;
  background: #000;
}
