* {
  box-sizing: border-box;
}

html {
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: none;
  font-family: "Open Sans", sans-serif;
  width: 100%;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  background-color: rgba(0, 0, 0, 1);
  color: #ffffff;
  font-size: 4vw;
  font-weight: 400;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  height: 100%;
  width: 100%;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
}

button {
  cursor: pointer;
  outline: none;
  background-color: rgba(0, 0, 0, 0);
  font-size: 1em;
}

.wrapper {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

a {
  color: #000000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  body {
    font-size: 3vw;
  }
}
@media (min-width: 1024px) {
  body {
    font-size: 2vw;
  }
}
@media (min-width: 1400px) {
  body {
    font-size: 1.5vw;
  }
}
@media only screen and (max-height: 600px) and (min-width: 568px) {
  .wrapper {
    height: auto;
  }
}
.background {
  font-size: 0;
  overflow: hidden;
  width: 100%;
  position: absolute;
  height: 100%;
}

.background img {
  height: 100vh;
  max-width: none;
  transform: translateX(-50%);
  margin-left: 50%;
}

/* BACKGROUND GALLERY */
.backgroundgallery li {
  opacity: 0;
  z-index: 0;
  -webkit-backface-visibility: hidden;
  -webkit-animation: imageAnimation 20s linear infinite 0s;
  -moz-animation: imageAnimation 20s linear infinite 0s;
  -o-animation: imageAnimation 20s linear infinite 0s;
  -ms-animation: imageAnimation 20s linear infinite 0s;
  animation: imageAnimation 20s linear infinite 0s;
}

.backgroundgallery li:nth-child(2) {
  -webkit-animation-delay: 10s;
  -moz-animation-delay: 10s;
  -o-animation-delay: 10s;
  -ms-animation-delay: 10s;
  animation-delay: 10s;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* END BACKGROUND GALLERY */
/* ANIMATION FADE */
@-webkit-keyframes imageAnimation {
  0% {
    opacity: 0;
    -webkit-animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    -webkit-animation-timing-function: ease-out;
  }
  27% {
    opacity: 1;
  }
  45% {
    opacity: 0.02;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes imageAnimation {
  0% {
    opacity: 0;
    -webkit-animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    -webkit-animation-timing-function: ease-out;
  }
  27% {
    opacity: 1;
  }
  45% {
    opacity: 0.02;
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes imageAnimation {
  0% {
    opacity: 0;
    -webkit-animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    -webkit-animation-timing-function: ease-out;
  }
  37% {
    opacity: 1;
  }
  45% {
    opacity: 0.02;
  }
  100% {
    opacity: 0;
  }
}
@-ms-keyframes imageAnimation {
  0% {
    opacity: 0;
    -webkit-animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    -webkit-animation-timing-function: ease-out;
  }
  27% {
    opacity: 1;
  }
  45% {
    opacity: 0.02;
  }
  100% {
    opacity: 0;
  }
}
@keyframes imageAnimation {
  0% {
    opacity: 0;
    -webkit-animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    -webkit-animation-timing-function: ease-out;
  }
  37% {
    opacity: 1;
  }
  45% {
    opacity: 0.02;
  }
  100% {
    opacity: 0;
  }
}
/* END ANIMATION FADE */
@media (min-width: 1200px) {
  .background img {
    height: 120vh;
    width: auto;
  }
}
@media (min-width: 1600px) {
  .background img {
    height: auto;
    width: 100vw;
  }
}
@media only screen and (max-height: 600px) and (min-width: 568px) {
  .background {
    position: relative;
  }

  .background img {
    height: 650px;
  }
}
.main {
  position: absolute;
  left: 50%;
  bottom: 6vh;
  transform: translateX(-50%);
  width: 95%;
  text-align: center;
}

.main h1.title {
  font-size: 1.8em;
  font-weight: 700;
}

.main a.linked {
  font-size: 25px;
  font-weight: 700;
  color: #ffffff;
  background-color: #00CC00;
  border: none;
  font-family: "Open Sans", sans-serif;
  width: 100%;
  padding: 0.5em 0;
  max-width: 350px;
  display: inline-block;
  white-space: nowrap;
}

.main a.linked:hover {
  text-decoration: none;
}

.main p.notify {
  font-size: 0.65em;
  margin: 0 auto;
  margin-top: 2em;
}

.main p.notify a {
  color: #ffffff;
  text-decoration: underline;
}

@media (min-width: 1024px) {
  .main {
    bottom: 10vh;
  }

  .main h1.title {
    font-size: 2em;
  }

  .main p.notify {
    max-width: 350px;
  }
}
@media (min-width: 768px) {
  .main p.notify {
    font-size: 0.55em;
  }
}
@media (min-width: 1200px) {
  .main p.notify {
    font-size: 0.45em;
  }
}
@media (min-width: 1600px) {
  .main a.linked {
    font-size: 1em;
    max-width: 16em;
  }

  .main p.notify {
    max-width: 35em;
  }
}
.legal__container {
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 12px;
  padding: 0.66em;
  color: #c3c3c3;
}

.legal__container .popwin {
  border-right: 0.06em solid #c3c3c3;
  padding: 0 0.41em;
}

.legal__container .legal__privacy {
  order: 1;
  border-right: none;
}

@media (min-width: 768px) {
  .legal__container {
    font-size: 0.9em;
  }
}
@media (min-width: 1200px) {
  .legal__container {
    font-size: 0.8em;
  }
}
@media (min-width: 1440px) {
  .legal__container {
    font-size: 0.6em;
  }
}

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