html {
  font-family: "PT Sans", sans-serif;
  font-size: 16px;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  touch-action: pan-x pan-y;
  touch-action: none;
}

.page {
  display: flex;
  position: absolute;
  top: 20px;
  bottom: 140px;
  right: 20px;
  left: 20px;
}

.box {
  margin: auto;
}

.to-front {
  z-index: 50;
  transform: translate3d(0, 0, 0) translateZ(1000px);
}

.title {
  font-size: 3rem;
  font-weight: bold;
  color: #555;
  text-shadow: 0.03rem 0.03rem #fff;
}

.claim {
  font-size: 1.88rem;
  font-weight: bold;
  color: #888;
  text-shadow: 0.03rem 0.03rem #fff;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.mark {
  flex-grow: 1;
}

.disclaimer {
  position: absolute;
  background-image: linear-gradient(rgba(255, 255, 255, 0.3137254902), rgba(204, 204, 204, 0.3137254902));
  x-top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  flex-wrap: wrap;
}

a, .address {
  font-size: 0.8rem;
  color: #555;
  flex-grow: 1;
  padding: 1.5rem;
}

.label {
  font-size: 0.8rem;
  color: #888;
}

.spacer {
  flex-grow: 99;
}

.text-focus-in-0 {
  animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.1s both;
}

.text-focus-in-1 {
  animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) 1.5s both;
}

.text-focus-in-2 {
  animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) 2.5s both;
}

.text-focus-in-3 {
  animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) 3.5s both;
}

@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}
.fade-in-1 {
  -webkit-animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) 1.5s both;
  animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) 1.5s both;
}

.fade-in-2 {
  -webkit-animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) 2.5s both;
  animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) 2.5s both;
}

.fade-in-3 {
  -webkit-animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) 3.5s both;
  animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) 3.5s both;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.silverliner {
  background: rgb(196, 196, 196);
  background: -moz-linear-gradient(-45deg, rgb(187, 196, 137) 0%, rgb(240, 240, 236) 100%, rgb(196, 190, 195) 0%);
  background: -webkit-linear-gradient(-45deg, rgb(195, 196, 181) 0%, rgb(240, 240, 236) 100%, rgb(196, 190, 195) 0%);
  background: linear-gradient(135deg, rgb(195, 196, 181) 0%, rgb(240, 240, 236) 100%, rgb(196, 190, 195) 0%);
  xbackground: linear-gradient(135deg, rgb(196, 196, 196) 0%, rgb(240, 240, 240) 100%, rgb(196, 196, 196) 0%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#cccccc", endColorstr="#f0f0f0", GradientType=1);
  background-size: 3000% 3000%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  -webkit-animation: silverliner 5s ease infinite;
  -moz-animation: silverliner 5s ease infinite;
  -o-animation: silverliner 5s ease infinite;
  animation: silverliner 5s ease infinite;
}

@-webkit-keyframes silverliner {
  0% {
    background-position: 51% 0%;
  }
  50% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 51% 0%;
  }
}
@-moz-keyframes silverliner {
  0% {
    background-position: 51% 0%;
  }
  50% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 51% 0%;
  }
}
@-o-keyframes silverliner {
  0% {
    background-position: 51% 0%;
  }
  50% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 51% 0%;
  }
}
@keyframes silverliner {
  0% {
    background-position: 51% 0%;
  }
  50% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 51% 0%;
  }
}
.on-min {
  display: none;
}

.on-max {
  display: none;
}

/*@media all and (min-width: 410px) {*/
.scale-up-ver-bottom {
  -webkit-animation: scale-up-ver-bottom 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 5s both;
  animation: scale-up-ver-bottom 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 5s both;
}

@-webkit-keyframes scale-up-ver-bottom {
  0% {
    -webkit-transform: scaleY(0.4);
    transform: scaleY(0.4) translate3d(0, 0, 0) translateZ(1000px);
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    opacity: 0;
  }
  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1) translate3d(0, 0, 0) translateZ(1000px);
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    opacity: 1;
  }
}
@keyframes scale-up-ver-bottom {
  0% {
    -webkit-transform: scaleY(0.001);
    transform: scaleY(0.001) translate3d(0, 0, 0) translateZ(1000px);
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    opacity: 0;
  }
  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1) translate3d(0, 0, 0) translateZ(1000px);
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    opacity: 1;
  }
}
/*}*/
@media all and (min-width: 800px) {
  .on-max {
    display: block;
    flex-grow: 99;
  }
}
@media all and (max-width: 694px) {
  html {
    font-size: 14px;
  }
  .desktop {
    display: none;
  }
}
@media all and (max-width: 492px) {
  .on-min {
    display: block;
    flex-grow: 2;
  }
  .title {
    font-size: 2.3rem;
  }
  .claim {
    font-size: 1.43rem;
  }
}
body {
  margin: 0;
  overflow: hidden;
}

.background {
  width: 100vw;
  height: 100vh;
}

.background span {
  width: 20vmin;
  height: 20vmin;
  border-radius: 20vmin;
  backface-visibility: hidden;
  position: absolute;
  animation-name: move;
  animation-duration: 6s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.background span:nth-child(1) {
  color: #efeee3;
  top: 21%;
  left: 11%;
  animation-duration: 13s;
  animation-delay: -13.6s;
  transform-origin: -19vw -13vh;
  box-shadow: -40vmin 0 13.4867095931vmin currentColor;
}
.background span:nth-child(2) {
  color: #efeee3;
  top: 17%;
  left: 96%;
  animation-duration: 12.4s;
  animation-delay: -6.4s;
  transform-origin: 11vw 12vh;
  box-shadow: 40vmin 0 8.3947698418vmin currentColor;
}
.background span:nth-child(3) {
  color: #dfddd3;
  top: 20%;
  left: 99%;
  animation-duration: 15.2s;
  animation-delay: -0.1s;
  transform-origin: -16vw -15vh;
  box-shadow: 40vmin 0 6.661442753vmin currentColor;
}
.background span:nth-child(4) {
  color: #fffdf3;
  top: 57%;
  left: 39%;
  animation-duration: 15.7s;
  animation-delay: -0.4s;
  transform-origin: -9vw 6vh;
  box-shadow: -40vmin 0 11.429195961vmin currentColor;
}
.background span:nth-child(5) {
  color: #fffdf3;
  top: 20%;
  left: 2%;
  animation-duration: 10.6s;
  animation-delay: -7s;
  transform-origin: -15vw 12vh;
  box-shadow: -40vmin 0 11.2736489335vmin currentColor;
}
.background span:nth-child(6) {
  color: #efeee3;
  top: 98%;
  left: 3%;
  animation-duration: 14s;
  animation-delay: -0.3s;
  transform-origin: 6vw 6vh;
  box-shadow: 40vmin 0 5.1132571968vmin currentColor;
}
.background span:nth-child(7) {
  color: #fffdf3;
  top: 11%;
  left: 48%;
  animation-duration: 11.3s;
  animation-delay: -1.9s;
  transform-origin: 3vw -5vh;
  box-shadow: 40vmin 0 14.6929884786vmin currentColor;
}
.background span:nth-child(8) {
  color: #fffdf3;
  top: 100%;
  left: 97%;
  animation-duration: 11.7s;
  animation-delay: -2.9s;
  transform-origin: -4vw -9vh;
  box-shadow: -40vmin 0 5.1327922396vmin currentColor;
}
.background span:nth-child(9) {
  color: #efeee3;
  top: 28%;
  left: 69%;
  animation-duration: 10.1s;
  animation-delay: -7s;
  transform-origin: -10vw -5vh;
  box-shadow: -40vmin 0 10.0271530702vmin currentColor;
}
.background span:nth-child(10) {
  color: #dfddd3;
  top: 44%;
  left: 13%;
  animation-duration: 12.3s;
  animation-delay: -0.9s;
  transform-origin: -23vw -1vh;
  box-shadow: 40vmin 0 5.7773642415vmin currentColor;
}
.background span:nth-child(11) {
  color: #efeee3;
  top: 96%;
  left: 74%;
  animation-duration: 12.1s;
  animation-delay: -0.2s;
  transform-origin: 25vw -12vh;
  box-shadow: 40vmin 0 13.0711990068vmin currentColor;
}
.background span:nth-child(12) {
  color: #dfddd3;
  top: 96%;
  left: 68%;
  animation-duration: 10.9s;
  animation-delay: -15s;
  transform-origin: 9vw -8vh;
  box-shadow: -40vmin 0 7.6072355771vmin currentColor;
}
.background span:nth-child(13) {
  color: #efeee3;
  top: 93%;
  left: 16%;
  animation-duration: 11.9s;
  animation-delay: -8.5s;
  transform-origin: -6vw -16vh;
  box-shadow: -40vmin 0 13.0396517852vmin currentColor;
}
.background span:nth-child(14) {
  color: #dfddd3;
  top: 16%;
  left: 48%;
  animation-duration: 13.6s;
  animation-delay: -7.1s;
  transform-origin: -3vw -13vh;
  box-shadow: -40vmin 0 8.0249215585vmin currentColor;
}
.background span:nth-child(15) {
  color: #fffdf3;
  top: 39%;
  left: 11%;
  animation-duration: 13.8s;
  animation-delay: -9.9s;
  transform-origin: 12vw 11vh;
  box-shadow: 40vmin 0 9.4657367267vmin currentColor;
}
.background span:nth-child(16) {
  color: #fffdf3;
  top: 2%;
  left: 15%;
  animation-duration: 15.2s;
  animation-delay: -13.7s;
  transform-origin: -12vw 23vh;
  box-shadow: 40vmin 0 8.9311917517vmin currentColor;
}
.background span:nth-child(17) {
  color: #dfddd3;
  top: 81%;
  left: 83%;
  animation-duration: 10.5s;
  animation-delay: -15.2s;
  transform-origin: 16vw 13vh;
  box-shadow: 40vmin 0 11.0157651767vmin currentColor;
}
.background span:nth-child(18) {
  color: #efeee3;
  top: 23%;
  left: 12%;
  animation-duration: 12.1s;
  animation-delay: -10.6s;
  transform-origin: -21vw -18vh;
  box-shadow: -40vmin 0 12.1511073186vmin currentColor;
}
.background span:nth-child(19) {
  color: #fffdf3;
  top: 32%;
  left: 33%;
  animation-duration: 14.8s;
  animation-delay: -11.2s;
  transform-origin: 2vw 22vh;
  box-shadow: -40vmin 0 9.4947732685vmin currentColor;
}
.background span:nth-child(20) {
  color: #fffdf3;
  top: 76%;
  left: 67%;
  animation-duration: 14s;
  animation-delay: -9.8s;
  transform-origin: -23vw 12vh;
  box-shadow: 40vmin 0 12.1219683098vmin currentColor;
}

@keyframes move {
  100% {
    transform: translate3d(0, 0, 1px) rotate(360deg);
  }
}

/*# sourceMappingURL=styles.css.map */
