body{
  margin: 0;
  height: 100vh;
  overflow: hidden;
  background: black;
}

 /* __________________Section(like container)__________________ */

section {
  background: black;
  color: #2dc4bf;
  opacity: 0.7;
  border-radius: 1em;
  padding: 1em;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%)
 }

 /* __________________Button__________________ */

.animated-button {
  text-decoration: none;
  display: inline-block;
  /*deff margin: 10px 20px; */
  margin: 25px 35px;
  padding: 15px 30px;
  overflow: hidden;
  border: 2px solid;
  border-bottom-width: 4px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
  color: rgba(30, 255, 188, 1);
  background: rgb(5, 5, 5);
  transition: color .3s, background .5s;
}
.animated-button:hover {
  animation: stripes .75s infinite linear;
  background: linear-gradient(45deg, rgba(30, 255, 188, 1) 25%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 50%, rgba(30, 255, 188, 1) 50%, rgba(30, 255, 188, 1) 75%, rgba(255, 255, 255, 1) 75%, rgba(255, 255, 255, 1));
  background-size: 10px 10px;
  color: #FF50E5;
}

/* __________________Button-JP__________________ */

.animated-button-jp {
  text-decoration: none;
  display: inline-block;
  margin: 25px 35px;
  padding: 11px 50px;
  overflow: hidden;
  border: 2px solid;
  border-bottom-width: 4px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
  color: rgba(30, 255, 188, 1);
  background: rgb(5, 5, 5);
  transition: color .3s, background .5s;
}
.animated-button-jp:hover {
  animation: stripes .75s infinite linear;
  background: linear-gradient(45deg, rgba(30, 255, 188, 1) 25%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 50%, rgba(30, 255, 188, 1) 50%, rgba(30, 255, 188, 1) 75%, rgba(255, 255, 255, 1) 75%, rgba(255, 255, 255, 1));
  background-size: 10px 10px;
  color: #FF50E5;
}

 /* __________________Button__________________ */

@keyframes stripes {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 0;
  }
}
 
/* __________________For mobiles y desktop__________________ */

@media screen and (min-width: 960px) {
  .section {
    margin-left: auto;
    margin-right: auto;
  }
}

/* __________________For tall screens on mobiles y desktop__________________ */

@media screen and (min-height: 721px) {
  .section {
    height: 840px;
  }
}