/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
  border: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* host-grotesk-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Host Grotesk";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/host-grotesk-v4-latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* host-grotesk-italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Host Grotesk";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/host-grotesk-v4-latin-italic.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* host-grotesk-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Host Grotesk";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/host-grotesk-v4-latin-700.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* host-grotesk-700italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Host Grotesk";
  font-style: italic;
  font-weight: 700;
  src: url("../fonts/host-grotesk-v4-latin-700italic.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inconsolata-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inconsolata";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/inconsolata-v31-latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inconsolata-600 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inconsolata";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/inconsolata-v31-latin-600.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inconsolata-800 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inconsolata";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/inconsolata-v31-latin-800.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
.glow-on-hover {
  width: 220px;
  height: 50px;
  border: none;
  outline: none;
  color: #fff;
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
}

.glow-on-hover:before {
  content: "";
  background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

.glow-on-hover:active {
  color: #000;
}

.glow-on-hover:active:after {
  background: transparent;
}

.glow-on-hover:hover:before {
  opacity: 1;
}

.glow-on-hover:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #111;
  left: 0;
  top: 0;
  border-radius: 10px;
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}
input {
  border: 0;
  border-radius: 10px;
  padding: 0.75rem;
  margin: 0.25rem 0;
  background-color: #fff5d1;
}

input[type=file] {
  background-color: #333;
}

html, body {
  height: 100%;
}

body {
  font-family: "Host Grotesk", Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  color: #fff;
  background-color: #222;
}

a {
  color: #ffea49;
  text-decoration: underline;
}

a:hover {
  color: #b6a60e;
  text-decoration: underline;
}

::-moz-selection {
  background: #ffeb00;
  color: #333333;
  text-shadow: none;
}

::selection {
  background: #ffeb00;
  color: #333333;
  text-shadow: none;
}

a:link {
  -webkit-tap-highlight-color: #fcd700;
}

ins {
  background-color: #fcd700;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #fcd700;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/* Mozilla dosen't style placeholders by default */
input:-moz-placeholder {
  color: #a9a9a9;
}

textarea:-moz-placeholder {
  color: #a9a9a9;
}

blockquote {
  padding: 16px;
  background: #eee;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}
h1.with-margin {
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.2rem;
  font-weight: 600;
}
h2.with-margin {
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.1rem;
  font-weight: 600;
}
h3.with-margin {
  margin-bottom: 1rem;
}

h4 {
  font-size: 1rem;
  font-weight: 600;
}
h4.with-margin {
  margin-bottom: 1rem;
}

.hidden {
  display: none;
}

.loader svg {
  width: 24px;
  transform-origin: center;
  animation: rotate 2s linear infinite;
}
.loader svg.small {
  width: 24px;
}
.loader svg.large {
  width: 38px;
}
.loader circle {
  fill: none;
  stroke: #333;
  stroke-width: 3;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dashoffset: -125px;
  }
}

table td {
  padding: 0.1rem 0.5rem;
}

.margin-top {
  margin-bottom: 0.75rem;
}

.margin-bottom {
  margin-bottom: 0.75rem;
}

.login-box {
  display: flex;
  justify-content: center;
  margin-top: 20vh;
}

.submit-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-content: center;
  margin-top: 0.5rem;
}
.submit-box .submit-content {
  width: 40%;
  text-align: center;
}
@media screen and (max-width: 48em) {
  .submit-box .submit-content {
    width: 90%;
  }
}
.submit-box p {
  margin: 1.5rem 0;
}
.submit-box p.example {
  color: #ddd99a;
}
.submit-box input {
  width: 80%;
}

#main {
  padding-top: 1rem;
}
#main .container {
  padding: 0 1rem;
}

.header {
  margin-bottom: 2rem;
}
.header .headline {
  display: flex;
  justify-content: left;
}
.header .headline h1 {
  font-size: 1.5rem;
}
@media only screen and (min-width: 48em) {
  .header .headline h1 {
    font-size: 2.25rem;
  }
}
@media only screen and (min-width: 64em) {
  .header .headline h1 {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 75em) {
  .header .headline h1 {
    font-size: 3rem;
  }
}

.date {
  font-size: 0.85rem;
  font-weight: 300;
  color: #777;
}

.box {
  margin-top: 1.25rem;
}
.box .box-value {
  font-size: 1.5rem;
  font-weight: 700;
}
.box .box-value .box-unit {
  font-size: 0.9rem;
}
.box .box-label {
  font-size: 1rem;
  font-weight: 300;
}

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