:root {
  font-family: "source-code-pro", Arial, Inter, Avenir, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  --heightButton: 65px;
  --white: #fff;
  --red: #f94e9c;
  --green: #56ff97;
  --blue: #02f1ff;
  --black: #000;
  --grey: #aaa;
  --gradient: linear-gradient(90deg, #77EED8, #9EABE4);
  --main: var(--gradient);
}

@font-face {
  font-family: "source-code-pro";
  src: url("/fonts/source-code-pro/SourceCodePro-Regular.otf") format("truetype");
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  background: #000;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  text-align: center;
  padding: 20px;
}

h1 {
  font-size: min(8vw, 3.5em);
  line-height: 1em;
  margin: 0.75em 0 0.25em 0;
  text-transform: uppercase;
  font-weight: 900;
}

h5 {
  color: var(--green);
  text-transform: uppercase;
}

p {
  text-transform: uppercase;
  font-size: 0.75em;
}

a {
  font-size: 3em;
  margin: 1em 0 0.5em;
  display: inline-block;
  text-decoration: none;
}

svg {
  fill: #fff;
  font-size: 1em;
  width: 35px;
  height: 35px;
}

ul li {
  list-style: none;
}/*# sourceMappingURL=style.css.map */