@font-face {
  font-family: "Racing Sans";
  src: url("/RacingSans.woff2") format("woff2");
}

:root {
  --background-color: rgb(16, 15, 15);
  --tx-color: #FFFFFF;
  --red: #e10800;
  --red-2: #ff2921;
  --blue: #4485be;

  --base-font: "Racing Sans";
  --base-font-size: 20pt;

  --h1-size: 2.35rem;
  --h2-size: 1.77rem;
  --h3-size: 1.33rem;

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: var(--base-font);
  background-color: var(--background-color);
  color: var(--tx-color);
  font-size: var(--base-font-size);
  height: 100%;
  width: 100%;
}
body {
  height: 100%;
  width: 100%;
}

h1 {
  font-size: var(--h1-size);
}
h2 {
  font-size: var(--h2-size);
}
h3 {
  font-size: var(--h3-size);
}

a {
  color: var(--blue);
}
