@keyframes moveBackground {
  0% {
    background-position: top left;
  }
  25% {
    background-position: bottom right;
  }
  50% {
    background-position: top right;
  }
  75% {
    background-position: bottom left;
  }
  100% {
    background-position: top left;
  }
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  background: black;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}

h1 {
  text-align: left;
  text-indent: -999em;
  line-height: 0;
  color: black;
  font-size: 1px;
  margin: 1.375rem 0;
}

.bg-image {
  background-image: url('../images/bg4.jpg');
  background-size: 200% 200%;
  background-repeat: no-repeat;
  animation: moveBackground 40s infinite;
  animation-timing-function: ease-in-out;

  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.bg-overlay {
  /* display: none; */
  background: url('../images/bg-mask.png');
  opacity: 0.25;
  position: absolute;
  left: 0;
  right: 0;
  top:0;
  bottom: 0;
}

#logo {
  width: 320px;
  display: block;
  margin: 0 auto;
}

.lane {
  max-width: 992px;
  margin: 2rem auto;
  padding: 2rem;
  background: rgb(0, 0, 0, .9);
  border-radius: .5rem;
}

.logo-lane {
  background: linear-gradient(180deg, rgba(0,0,0,1) 0, rgba(0,0,0,.9) 100%);
  padding: 2rem;
}

h2 {
  text-align: left;
  font-size: 2.5rem;
  margin: 0;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
  font-weight: bold;
}

p {
  line-height: 1.5em;
  font-size: 1.5rem;
  color: #ddd;
}

a {
  color: #5baaff;
  text-decoration: none;
  font-weight: bold;
  transition: color linear .08s;
}

a:hover {
  color: #8bc868;
}

a.project-link, a.project-link:visited, a.project-link:active {
  background: #5baaff;
  color: white;
  border-radius: .5rem;
  padding: 0 .75rem;
  line-height: 2.5rem;
  display: inline-block;
  font-size: 1.25rem;
  transition: background-color linear .2s;
}

a.project-link:hover {
  background: #728ee4;
}

dd, dt {
  margin-bottom: .5rem;
}

dd {
  color: #ccc;
  margin-bottom: 2rem;
}

ul {
  margin-top: -1rem;
}

li {
  line-height: 1.5rem;
  font-size: 1.5rem;
}

h3.subheader {
  margin-top: .5rem;
}

h3 + p.subheader {
  margin-top: -1.5rem;
  margin-bottom: 2rem;
}

h2 + p.subheader {
  margin-top: 1rem;
}

.video-frame {
  width: 560px;
  height: 315px;
  margin: 0 auto
}

.video-frame iframe {
  width: 560px;
  height: 315px;
}

.no-dots {
  padding-left: 1rem;
}

.no-dots li {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  line-height: 3rem;
}

.social-link {
  display: inline-block;
}

.social-link a {
  line-height: 3rem;
  display: inline-block;
}

.social-link .fa-twitter, .social-link .fa-instagram, .social-link .fa-discord {
  font-size: 2rem;
  line-height: 2rem;
  vertical-align: middle;
  min-width: 3rem;
  color: white;
  margin-right: .4rem;
}

.center {
  text-align: center;
}

.mj-w-res-iframe {
  max-height: 24rem;
}


.app-links {
  margin: 0 auto;
  text-align:center;
}

.app-link {
  font-size: 1.75rem;
  line-height: 5rem;
  background: #aa66cc;
  color: white;
  display: inline-block;
  padding: 0 2rem 0 1.5rem;;
  border-radius: .5rem;
  transition: background-color linear .08s;
}

.app-link .svg-inline--fa {
  display: inline-block;
  min-width: 2.5rem;
}

.app-link:hover {
  background: #5baaff;
  color: white;
}

.app-link + .app-link {
  margin-left: 3rem;
}

.mobile-only {
  display: none;
}
