@import url("/public/webfonts/install.css");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0 none;
  outline: 0 none;
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

html {
  color: white;
  background-color: black;
}

html {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 100;
  letter-spacing: 0.04em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  display: block;
  font-weight: bold;
  line-height: 1;
  margin: 6px 0px;
}

h1 {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-family: "webfont", Arial, Helvetica, sans-serif;
  font-size: clamp(40px, 12vw, 150px);
  line-height: 0.75;
  letter-spacing: normal;
  font-weight: bold;
}

html {
  height: 100%;
}

body {
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: stretch;
}

main {
  flex-grow: 1;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

footer {
  position: fixed;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 12px;
  font-weight: 100;
  line-height: 1;
  text-align: center;
}
footer a {
  display: block;
  padding: 24px;
  color: rgba(255, 255, 255, 0.3);
}
footer a:hover, footer a:focus {
  color: rgba(255, 255, 255, 0.6);
}