:root {
  --main-bg-color: #fff;
  --main-text-color: #000;
  --main-alt-text-color: #444;
  --main-font-family: 'Josefin Sans', sans-serif;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

body {
  align-items: center;
  background-color: var(--main-bg-color);
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
  margin: 0;
  width: 100vw;
}

#phaser-game {
  margin: 0 auto;
}

header {
  left: 10px;
  position: absolute;
  text-align: center;
  top: 10px;
  display: flex;
}

header h1 {
  font-family: var(--main-font-family);
  color: var(--main-text-color);
  margin: 0 1rem 0 0;
  font-size: 1rem;
}

header p {
  font-size: 0.8rem;
  font-family: var(--main-font-family);
  color: var(--main-alt-text-color);
  font-variation-settings: 'wght' 375, 'GRAD' 88;
  margin: 0 0 5px;
}

header p strong {
  font-family:var(--main-font-family);
  color: var(--main-text-color);
}