* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html,
body {
  width: 100%;
}

img {
  width: 100%;
  display: block;
}

.block-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.app {
  background: "black";
  width: 100%;
  font-weight: bolder;
  height: 100vh;
  overflow: hidden;
  display: block;
  position: relative;
  text-decoration: none;
  background-color: black;
}

.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../image/bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  -webkit-animation: bg 3s linear;
          animation: bg 3s linear;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.logo {
  position: absolute;
  top: 30%;
  width: 25%;
  left: 37.5%;
  -webkit-animation: logo 3s linear;
          animation: logo 3s linear;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes logo {
  from {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes logo {
  from {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes bg {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bg {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.girls {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.ga {
  -webkit-transform: translateX(500%);
          transform: translateX(500%);
  -webkit-animation: ga 0.4s ease;
          animation: ga 0.4s ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.za {
  -webkit-transform: translateX(-500%);
          transform: translateX(-500%);
  -webkit-animation: za 0.4s ease;
          animation: za 0.4s ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.ga1,
.za1 {
  -webkit-animation-delay: 3.1s;
          animation-delay: 3.1s;
}

.ga2,
.za2 {
  -webkit-animation-delay: 3.2s;
          animation-delay: 3.2s;
}

.ga3,
.za3 {
  -webkit-animation-delay: 3.3s;
          animation-delay: 3.3s;
}

.ga4,
.za4 {
  -webkit-animation-delay: 3.4s;
          animation-delay: 3.4s;
}

.ga5,
.za5 {
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
}

@-webkit-keyframes ga {
  from {
    -webkit-transform: translateX(500%);
            transform: translateX(500%);
  }
  to {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes ga {
  from {
    -webkit-transform: translateX(500%);
            transform: translateX(500%);
  }
  to {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@-webkit-keyframes za {
  from {
    -webkit-transform: translateX(-500%);
            transform: translateX(-500%);
  }
  to {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes za {
  from {
    -webkit-transform: translateX(-500%);
            transform: translateX(-500%);
  }
  to {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@-webkit-keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.girls__top {
  margin: 0 auto;
  width: 85%;
  left: 6%;
  height: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.girls__top img {
  opacity: 1;
  margin-right: -11.5%;
  width: 29.2%;
}

.girls__bottom {
  margin: 0 auto;
  width: 85%;
  left: 6%;
  bottom: 50%;
  height: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.girls__bottom img {
  opacity: 1;
  margin-right: -11.5%;
  width: 29.2%;
}

.effect {
  position: absolute;
  left: 0;
  width: 100%;
  opacity: 0;
  -webkit-animation: show 0.3s ease;
          animation: show 0.3s ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
}

.effect canvas {
  width: 100%;
}

.vs {
  position: absolute;
  width: 10%;
  left: 45%;
  top: 27%;
}

.notice {
  position: absolute;
  top: 100%;
  width: 80%;
  left: 10%;
  opacity: 0;
  -webkit-animation: show 0.3s ease;
          animation: show 0.3s ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 3.6s;
          animation-delay: 3.6s;
}

.notice1 {
  position: absolute;
  top: -15%;
  left: 35%;
  width: 30%;
}

.button_yes {
  position: absolute;
  width: 10%;
  top: 30%;
  left: 40%;
}

.button_yes {
  position: absolute;
  width: 10%;
  top: 30%;
  left: 40%;
  -webkit-animation: pulse 1s ease;
          animation: pulse 1s ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.button_no {
  position: absolute;
  width: 10%;
  top: 30%;
  left: 50%;
  -webkit-animation: pulse 1s ease;
          animation: pulse 1s ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
