@charset "utf-8";

@media screen and (orientation: portrait) {
  :root {
    --base-unit: 1vw;
  }
}

@media screen and (orientation: landscape) {
  :root {
    --base-unit: 1vh;
  }
}

:root {
  font-family: source-code-pro, monospace, sans-serif;
  font-size: calc(var(--base-unit) * 5);
  line-height: 1.25;
  color: rgba(191, 191, 191, 1);
  background-color: rgba(15, 15, 15, 1);
}

* {
  border: none;
  margin: 0;
  padding: 0;
  font-weight: 300;
}

html,
body {
  width: 100vw;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

.page-wrapper {
  width: 100vw;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-title {
  text-align: center;
  text-shadow: 0 0 calc(var(--base-unit) * 1) rgba(191, 191, 191, .05), 0 0 calc(var(--base-unit) * .75) rgba(191, 191, 191, 1), 0 0 calc(var(--base-unit) * .25) rgba(191, 191, 191, 1);
}