:root {
  --font-color: #fff;
  --font-size: 16px;
  --gap: 20px;
  --page-gap: 0;
}

html { font-size: var(--font-size); }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--font-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: var(--page-gap);
}

a { font-weight: 500; color: var(--font-color); text-decoration: none; }
a:hover { color:inherit; text-decoration: underline; }

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: #000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cover-container {
  width:100vw;
  display: flex;
}

.overlay-bg {
  background-color: #000000bb;
  padding: 50px;
  border-radius: var(--gap);
}

.header {
  display: flex;
  flex-direction:row;
  align-items: center;
  justify-content: space-between;
}
.header a.logo {
  font-size: 2em;
  font-weight: 900;
  text-shadow: 2px 2px #000;
}
.navigation { background-color: #ffffff22; border-radius: 10px; }
.navigation a {
  display: inline-block;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 900;
  padding: 10px 15px;
  margin-left: 10px;
  text-shadow: 1px 1px #000;
}
.navigation a:hover {
  background-color: #ffffff22;
}

.content {
  margin-top: var(--gap);
}

.static-height {
  max-height: 60vh;
  overflow: auto;
}

.app-download {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.app-download img {
  width: 200px;
}

.preview-video {}
.preview-video a {
  font-size: 1.3em;
}

.page-image { display: flex; align-items: center; justify-content: center }
.page-image img {
  max-width: 400px;
}

.footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 0.8em;
}

.password-reset {

}
.password-reset label {

}

@media only screen and (max-width:1024px) {
  .navigation a { font-size: 0.8em; margin-left:0; }
}

@media only screen and (max-width:768px) {
  .cover-container {
    height: initial;
  }
  .overlay-bg {
    padding: var(--gap);
  }
  .header {
    flex-direction: column;
    margin-top: 20px;
  }
  .header a.logo {
    font-size: 1.2em;
  }
  .navigation {
    margin-top: var(--gap);
    display: flex;
    justify-content: space-between;
    background-color: #ffffff11;
    border-radius: 10px;
    flex-wrap: wrap;
  }
  .navigation a { font-size: 1em; margin-left:0; }
  .page-image img {
    max-width: 200px;
    margin-bottom: var(--gap);
  }
  .app-download img {
    width: 125px;
  }
  .preview-video a {
    font-size: 1.2em;
  }
  .footer {
    flex-direction: column;
    align-items: center;
  }
  .static-height {
    max-height: initial;
  }
}
