:root {
  --white: #fff;
  --gray-light: #eee;
  --background: #222;
  --blue: #282b70;
  --blue-light: #34368c;
  --yellow: #ffdf38;
}

body {
  background: var(--background);
  color: var(--white);
  display: flex;
  align-items: center;
  flex-wrap: inherit;
  height: 100vh;
  justify-content: center;
  font-family: "Source Sans 3", sans-serif !important;
  position: relative;
}

#inner {
  padding: 2rem;
  display: grid;
  position: relative;
  z-index: 2;
  grid-template-columns: 1fr auto;
}

h1 {
  font-size: calc(4rem + 1.6vw);
  font-family: "Source Sans 3", sans-serif;
  font-weight: 900;
  padding: 1rem 0.3rem;
  text-transform: uppercase;
}

#svg-container {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.under-construction {
  position: absolute;
  text-align: center;
  width: 100%;
  bottom: 5%;
  font-size: calc(0.2vw + 0.8vh + 1vmin);
  line-height: 1;
  font-weight: 300;
}/*# sourceMappingURL=style.css.map */