@-webkit-keyframes loader-item {
  0% {
    -webkit-transform: translate(12px, 80px) scale(0);
            transform: translate(12px, 80px) scale(0);
  }
  25% {
    -webkit-transform: translate(12px, 80px) scale(0);
            transform: translate(12px, 80px) scale(0);
  }
  50% {
    -webkit-transform: translate(12px, 80px) scale(1);
            transform: translate(12px, 80px) scale(1);
  }
  75% {
    -webkit-transform: translate(80px, 80px) scale(1);
            transform: translate(80px, 80px) scale(1);
  }
  100% {
    -webkit-transform: translate(148px, 80px) scale(1);
            transform: translate(148px, 80px) scale(1);
  }
}@keyframes loader-item {
  0% {
    -webkit-transform: translate(12px, 80px) scale(0);
            transform: translate(12px, 80px) scale(0);
  }
  25% {
    -webkit-transform: translate(12px, 80px) scale(0);
            transform: translate(12px, 80px) scale(0);
  }
  50% {
    -webkit-transform: translate(12px, 80px) scale(1);
            transform: translate(12px, 80px) scale(1);
  }
  75% {
    -webkit-transform: translate(80px, 80px) scale(1);
            transform: translate(80px, 80px) scale(1);
  }
  100% {
    -webkit-transform: translate(148px, 80px) scale(1);
            transform: translate(148px, 80px) scale(1);
  }
}
@-webkit-keyframes loader-item-r {
  0% {
    -webkit-transform: translate(148px, 80px) scale(1);
            transform: translate(148px, 80px) scale(1);
  }
  100% {
    -webkit-transform: translate(148px, 80px) scale(0);
            transform: translate(148px, 80px) scale(0);
  }
}
@keyframes loader-item-r {
  0% {
    -webkit-transform: translate(148px, 80px) scale(1);
            transform: translate(148px, 80px) scale(1);
  }
  100% {
    -webkit-transform: translate(148px, 80px) scale(0);
            transform: translate(148px, 80px) scale(0);
  }
}
@-webkit-keyframes loader-item-c {
  0% {
    background: #ffffff;
  }
  25% {
    background: #90f1e7;
  }
  50% {
    background: #5b9590;
  }
  75% {
    background: #2c4946;
  }
  100% {
    background: #ffffff;
  }
}
@keyframes loader-item-c {
  0% {
    background: #ffffff;
  }
  25% {
    background: #90f1e7;
  }
  50% {
    background: #5b9590;
  }
  75% {
    background: #2c4946;
  }
  100% {
    background: #ffffff;
  }
}
.loader-item div {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-transform: translate(80px, 80px) scale(1);
          transform: translate(80px, 80px) scale(1);
  background: #ffffff;
  -webkit-animation: loader-item 1s infinite cubic-bezier(0, 0.5, 0.5, 1);
          animation: loader-item 1s infinite cubic-bezier(0, 0.5, 0.5, 1);
}

.loader-item div:nth-child(1) {
  background: #2c4946;
  -webkit-transform: translate(148px, 80px) scale(1);
          transform: translate(148px, 80px) scale(1);
  -webkit-animation: loader-item-r 0.25s infinite cubic-bezier(0, 0.5, 0.5, 1), loader-item-c 1s infinite step-start;
          animation: loader-item-r 0.25s infinite cubic-bezier(0, 0.5, 0.5, 1), loader-item-c 1s infinite step-start;
}

.loader-item div:nth-child(2) {
  -webkit-animation-delay: -0.25s;
          animation-delay: -0.25s;
  background: #5b9590;
}

.loader-item div:nth-child(3) {
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s;
  background: #2c4946;
}

.loader-item div:nth-child(4) {
  -webkit-animation-delay: -0.75s;
          animation-delay: -0.75s;
  background: #66aaa2;
}

.loader-item div:nth-child(5) {
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
  background: #90f1e7;
}

#loader {
  width: 200px;
  height: 200px;
  display: inline-block;
  position: fixed;
  top: calc(50% - 100px);
  left: calc(50% - 100px);
  background: #fff;
}
#loader #progress {
  width: 100%;
  height: 20px;
  background-color: rgb(228, 228, 228);
  position: relative;
}
#loader #progress #bar {
  position: absolute;
  left: 0;
  height: 20px;
  background-color: red;
  width: 0;
  -webkit-transition: 0.1s ease width;
  transition: 0.1s ease width;
}

.loader-item {
  width: 100%;
  height: 100%;
  -webkit-transform: translateZ(0) scale(1);
          transform: translateZ(0) scale(1);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0; /* see note above */
}

.loader-item div {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

/* generated by https://loading.io/ */
#content {
  position: relative;
  height: 90%;
  display: inline-block;
  top: 0;
}

#message,
#alert {
  font-size: 12px;
  color: #2c4946;
  display: block;
}

#instructions {
  max-width: 600px;
  margin: 5px auto;
  padding-left: 10px;
  padding-right: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#instructions p {
  font-size: 1em;
}
@media only screen and (max-width: 380px) {
  #instructions p {
    font-size: 0.5em;
  }
}
#instructions .number {
  font-size: 0.9em;
  font-family: "Font", Geneva, Verdana, sans-serif;
  padding: 7px 12px;
  font-weight: 900;
  background-color: #FFFFFF;
  width: 10px;
  text-align: center;
  display: block;
  border-radius: 50%;
  margin: 5px auto 0 auto;
  color: #2c4946;
}
@media only screen and (max-width: 380px) {
  #instructions .number {
    font-size: 0.6em;
    padding: 7px 10px;
  }
}

h1 {
  font-size: 8vw;
  width: 90vw;
  font-family: "Font", Geneva, Verdana, sans-serif;
  margin-left: 5vw;
  margin-right: 5vw;
  color: #fafafa;
  text-align: center;
  text-shadow: 0 0 40px rgba(30, 6, 6, 0.3);
}
@media only screen and (min-width: 720px) {
  h1 {
    font-size: 5vw;
  }
}

p {
  font-size: 4vw;
  color: #fafafa;
  text-shadow: 0 0 20px rgba(30, 6, 6, 0.3);
  text-align: center;
  font-weight: bold;
}
@media only screen and (min-width: 720px) {
  p {
    font-size: 2vw;
  }
}

.buttons {
  position: fixed;
  bottom: 0;
  width: calc(100vw - 40px);
  margin-left: 20px;
  margin-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.button {
  font-size: 2.8vh;
  padding: 20px 0;
  margin-bottom: 10px;
  width: 100%;
  border: 0;
  outline: 0px solid white;
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  background-color: #FFF;
  color: #2c4946;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  border-radius: 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
@media only screen and (min-width: 720px) {
  .button {
    font-size: 2vh;
    padding: 15px 0;
    padding: 30px 0;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .button {
    font-size: 1.5vh;
    padding: 15px 0;
    padding: 30px 0;
    margin-bottom: 20px;
  }
}
.button span {
  display: block;
  margin-top: 2px;
  font-size: 0.5em;
  color: rgba(44, 73, 70, 0.4705882353);
}
.button.only {
  margin-bottom: 0;
}
.button:hover, .button:active {
  background-color: rgb(238, 238, 238);
}

#visual {
  background-color: rgba(255, 255, 255, 0);
  width: 100vw;
  height: 100vh;
}

.copyright {
  font-size: 11px;
  font-weight: 100;
  color: white;
}
.copyright a,
.copyright a:link,
.copyright a:hover,
.copyright a:visited,
.copyright a:active {
  color: inherit;
}