@import url("https://fonts.googleapis.com/css?family=Lato:100,300,400");
@import url("https://fonts.googleapis.com/css?family=Roboto:100");
.mypage {
  font-family: "VT323", monospace;
  text-align: center;
  font-weight: bold;
  font-size: larger;
}
.mypage .headertext {
  text-align: center;
  margin-left: -200;
  margin-top: 20;
  animation: glitch 3s infinite;
}
.mypage .policy {
  font-size: 15;
  text-align: left;
  margin-top: 270;
  margin-left: 20;
}
.mypage .policy a {
  text-decoration: none;
}
.mypage .policy a:hover {
  text-decoration: none;
}

@keyframes on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes glitch {
  40% {
    opacity: 1;
    transform: scale(1, 1);
    transform: skew(0, 0);
  }
  41% {
    opacity: 0.8;
    transform: scale(1, 1.2);
    transform: skew(80deg, 0);
  }
  42% {
    opacity: 0.8;
    transform: scale(1, 1.2);
    transform: skew(-50deg, 0);
  }
  43% {
    opacity: 1;
    transform: scale(1, 1);
    transform: skew(0, 0);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.buttons {
  position: relative;
  width: 300px;
  height: 50px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1cm;
  overflow: hidden;
  border: 1px solid;
  font-family: "VT323", monospace;
  font-weight: 300;
  font-size: 30px;
  transition: 0.5s;
  letter-spacing: 1px;
  border-radius: 10px;
}
.buttons button {
  width: 101%;
  height: 100%;
  font-family: "VT323", monospace;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: bold;
  background: #000;
  -webkit-mask: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/nature-sprite.png");
  mask: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/nature-sprite.png");
  -webkit-mask-size: 2300% 100%;
  mask-size: 2300% 100%;
  border: none;
  color: #fff;
  cursor: pointer;
  animation: ani2 0.5s steps(22) forwards;
}
.buttons button:hover {
  animation: ani 0.5s steps(22) forwards;
}

.mas {
  position: absolute;
  color: #000;
  text-align: center;
  width: 101%;
  font-family: "VT323", monospace;
  font-weight: 300;
  position: absolute;
  font-size: 15px;
  margin-top: 17px;
  overflow: hidden;
  font-weight: bold;
}
@keyframes ani {
  from {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
  to {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }
}
@keyframes ani2 {
  from {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }
  to {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
}
a {
  color: #00ff95;
}

.button-container-3 {
  position: relative;
  width: 100px;
  height: 50px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 8vh;
  overflow: hidden;
  border: 1px solid #000;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  transition: 0.5s;
  letter-spacing: 1px;
  border-radius: 8px;
}
.button-container-3 button {
  width: 101%;
  height: 100%;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: bold;
  background: #000;
  -webkit-mask: url("https://raw.githubusercontent.com/pizza3/asset/master/natureSmaller.png");
  mask: url("https://raw.githubusercontent.com/pizza3/asset/master/natureSmaller.png");
  -webkit-mask-size: 7100% 100%;
  mask-size: 7100% 100%;
  border: none;
  color: #fff;
  cursor: pointer;
  animation: ani2 0.7s steps(70) forwards;
}
.button-container-3 button:hover {
  animation: ani 0.7s steps(70) forwards;
}

@media only screen and (max-width: 600px) {
  .mypage {
    text-align: center;
  }
  .mypage .headertext {
    font-size: 10;
    margin-left: -150;
  }
  .mypage .policy {
    margin-top: 140;
  }
}/*# sourceMappingURL=style.css.map */