/* CSS Reset from http://meyerweb.com/ */
* {
  outline: 0;
}

html, body, div, span,
applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dd, dl, dt, li, ol, ul,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  line-height: 1;
  font-family: inherit;
  text-align: left;
}

a {
  -webkit-tap-highlight-color: #fff;
}

a img, :link img, :visited img {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ol, ul {
  list-style: none;
}

q:before, q:after,
blockquote:before, blockquote:after {
  content: "";
}

*:focus {
  outline: 0;
  outline: none;
}

body, html, div#app {
  display: flex;
  flex-grow: 1;
  height: 100vh;
  max-height: -webkit-fill-available;
  position: relative;
  overflow-x: hidden;
  z-index: 1;
  scrollbar-width: thin;
}
body ::-webkit-scrollbar, html ::-webkit-scrollbar, div#app ::-webkit-scrollbar {
  width: 1px;
}
body ::-webkit-scrollbar-track, html ::-webkit-scrollbar-track, div#app ::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
}
body ::-webkit-scrollbar-thumb, html ::-webkit-scrollbar-thumb, div#app ::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0);
  outline: 1px solid rgba(0, 0, 0, 0);
}

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

html, body {
  height: 100%;
  min-height: 100%;
}

body {
  background: black;
  color: #fff;
  padding: 64px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  display: flex;
  flex-direction: column;
  font-size: 16px;
}
body section.header {
  height: 110px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-grow: 1;
}
body logo {
  background: url("/assets/images/logo.svg") no-repeat center center;
  background-size: contain;
  width: 256px;
  height: 96px;
  z-index: 1000;
}
body coming-soon {
  z-index: 10;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding-left: 64px;
  padding-bottom: 128px;
  width: 500px;
}
body coming-soon h1 {
  font-size: 3rem;
  font-weight: 200;
}
body coming-soon h2 {
  padding-top: 16px;
  opacity: 0.5;
}
body copyright {
  display: block;
  z-index: 10;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}
body video {
  display: block;
  width: 1684px;
  height: 944px;
  transform: scaleX(-1);
  position: fixed;
  bottom: -100px;
  right: -500px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  body body {
    padding: 32px;
  }
  body coming-soon {
    padding-left: 0px;
    padding-bottom: 64px;
    width: 300px;
  }
  body coming-soon h1 {
    font-size: 2rem;
    font-weight: 200;
  }
  body coming-soon h2 {
    padding-top: 16px;
    opacity: 0.5;
  }
  body video {
    width: 900px;
    height: 700px;
    right: -300px;
    bottom: -200px;
  }
}
