@font-face {
  font-family: "press-start";
  src: url("./src/PressStart2p.ttf");
}

:root {
  --text-color: rgb(240, 240, 240);
  --jam: rgb(255, 0, 104);
  --pixel-font: "press-start", sans-serif;
}

body {
  margin: 0;
  background-image: url("./src/sky-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  position: relative;
}

#content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

#your-game {
  font-family: var(--pixel-font);
  font-weight: 400;
  font-size: 30px;
  color: var(--text-color);
  text-align: center;
}

#bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 8px;
  font-family: var(--pixel-font);
  font-weight: 400;
  font-size: 12px;
  color: var(--text-color);
  text-align: center;
}

#jam-color {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: var(--jam);
  text-align: center;
}
