body {
  margin: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #222222;
  font-family: "Lato", "Helvetica Neue", "Helvetica", Arial, "Lucida Grande", sans-serif;
}

* {
  box-sizing: border-box;
}

a[href] {
  color: #6EC3EC;
  font-weight: bold;
  text-decoration: none;
  transition: all .8s ease-in-out;
}

a[href]:hover {
  color: white;
  text-shadow: 0px 0px 4px #8795de;
  transition: all .8s ease-in-out;
}

h1 {
  font-size: 2.5em;
  font-weight: 100;
  letter-spacing: 1em;
  text-shadow: 0px 0px 20px #6EC3EC, 0 0 1px black;
  color: #6EC3EC;
}

h3 {
  font-size: 0.7em;
  font-weight: 300;
  letter-spacing: 1em;
  text-shadow: 0px 0px 20px #6EC3EC, 0 0 1px black;
  color: #6EC3EC;
  display: inline-block;
}

.video-container{
  position: absolute;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-container video {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
}

.footer-container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  text-align: center;
}

.footer {
  display: inline-block;
  border: 1px solid #6EC3EC;
  border-radius: 0 10px 0 10px;
  margin: 5px;
  padding-left: 5px;
  padding-right: 5px;
  text-align: center;
  background: transparent;
  box-shadow: inset 0px 0px 8px #323232;
}

.footer > * {
  padding: 10px 5px;
  display: inline-block;
}
.footer > span {
  padding-left: 10px;
  color: #FFFFFF;
}
.container {
  font-size: 16px;
  right: 15%;
  top: 30%;
  position: absolute;
  color: #FFFFFF;
  text-align: center;
}

.bar {
  margin: 0 auto;
  height: .3em;
  width: 30em;
  border-radius: 10px;
  background: transparent;
  box-shadow: inset 0px 0px 8px #323232;
  overflow: hidden;
  padding: 5px;
}

.progress {
  height: inherit;
  border-radius: inherit;
  width: 0;
  background: #6EC3EC;
  animation: load 3s linear infinite;
  animation-delay: 2s;
}

@keyframes load {
  0% {
    width: 0%;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 0%;
    float: right;
  }
}

@media only screen and (max-width: 768px) {
  .container {
    right: 0;
    width: 100vw;
  }
}


@media only screen and (max-width: 500px) {
  h1 {
    font-size: 1.25em;
  }

  .bar {
    width: 15em;
    height: .15em;
  }

  .footer {
    display: inline-block;
    border: none;
    margin: 5px;
    padding-left: 5px;
    padding-right: 5px;
    text-align: center;
    background: transparent;
    box-shadow: none;
    font-size: 11px;
  }
}
