html, body {
  margin: 0;
  overflow: hidden;
  background-color: black;
  color: white;
}

@font-face {
  font-family: "ChevyRay - Softsquare Mono";
  src: url("../font/ChevyRay - Softsquare Mono.ttf") format("truetype");
}
@font-face {
  font-family: "ChevyRay - Thicket";
  src: url("../font/ChevyRay - Thicket.ttf") format("truetype");
}
html, body {
  font-family: "ChevyRay - Softsquare Mono", sans-serif;
}

h2 {
  font-family: "ChevyRay - Thicket", sans-serif;
}

body {
  --scale: 1;
  --pageHeight: 100vh;
  --pageWidth: 100vw;
}

p {
  margin: 0;
}

.content {
  position: absolute;
  top: 0;
  left: 0;
  height: var(--pageHeight);
  width: var(--pageWidth);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guy-totals {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  padding: calc(3px * var(--scale));
  font-size: calc(8px * var(--scale));
}

.guy-total {
  display: flex;
  align-items: flex-start;
}

.guy-total-fire {
  color: #f77622;
}

.guy-total-arrow {
  width: calc(7px * var(--scale));
  width: calc(7px * var(--scale));
  image-rendering: pixelated;
  padding-right: calc(1px * var(--scale));
}

.click-to-start {
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
  font-size: calc(8px * var(--scale));
}

.title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: calc(6px * var(--scale));
  padding-top: 10vh;
  background-color: rgba(0, 0, 0, 0.3);
  text-align: center;
}

.title > p {
  margin: 1em;
}

.fullscreen {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}

.death-message {
  text-align: center;
  font-size: calc(8px * var(--scale));
  padding: calc(10px * var(--scale));
  transform: translateY(-100%);
  transition: transform 0.5s;
  background-color: rgba(0, 0, 0, 0.3);
}

.death-message__shown {
  transform: translateY(0);
}

.notification-container {
  pointer-events: none;
}

.notification {
  position: absolute;
  bottom: -100%;
  left: 0;
  right: 0;
  transition: bottom 0.5s;
  font-size: calc(5px * var(--scale));
  padding: calc(6px * var(--scale));
  line-height: 1.3;
  background-color: rgba(0, 0, 0, 0.3);
  text-align: center;
}

.shown-notification {
  bottom: 0;
}

.select-creature-container {
  backdrop-filter: blur(calc(1px * var(--scale)));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.select-creature-widget {
  position: absolute;
  display: flex;
  justify-content: center;
}

.select-creature-widget-option {
  position: absolute;
  width: 30vmin;
  height: 30vmin;
  bottom: 0;
  transition: transform 0.1s;
  transform-origin: bottom;
}
.select-creature-widget-option:nth-child(2) {
  transform: rotate(180deg);
}
.select-creature-widget-option:nth-child(2) > .select-creature-widget-option-content {
  transform: rotate(180deg);
}

.select-creature-widget-option-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: calc(4px * var(--scale));
  z-index: 1;
}

.select-creature-widget-option-background {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-image: url("../img/arc.svg");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.7;
}
.select-creature-widget-option__selected .select-creature-widget-option-background {
  background-image: url("../img/arc-inset-glow.svg");
  opacity: 0.75;
}

.select-creature-widget-canvas {
  width: 25%;
  height: 25%;
  image-rendering: pixelated;
  margin-bottom: 5%;
}

.hidden {
  display: none;
}

.invisible {
  visibility: hidden;
}

/*# sourceMappingURL=styles.css.map */
