.pamore{
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 70px;
}
#about .pamore {
    display: flex;
    justify-content: flex-start;
}
.pamore .btn {
  display: inline-block;
  padding: 15px 50px;
  border-radius: 5.625rem 5.625rem;
  position: relative;
  text-decoration: none;
}
.pamore .btn{
    display: flex;
    align-items: center;
}
.pamore .btn-text {
  font-family: "Courier New", Courier, monospace;
  font-size: 22px;
  line-height: 100%;
  color: #232e41;
  font-weight: 700;
  display: block;
  position: relative;
  padding-right: 1.25rem;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.65, 0, 0.74, 0.99);
  transition-duration: 0.4s;
  z-index: 5;
  padding-top: 3px;
}
.pamore .btn:hover .btn-text {
  transform: translateX(-39px);
}
.pamore .btn-text:after {
  content: "+";
  position: absolute;
  top: 50%;
  right: -7px;
  transform: translate(0, -50%);
  margin-top: -1px;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.65, 0, 0.74, 0.99);
  transition-duration: 0.4s;
}
.pamore .btn:hover .btn-text:after {
  transform: translate(60px, -50%);
}
.pamore .btn-bg {
  border: solid 1px #232e41;
  border-radius: 3.75rem 3.75rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition-property: left;
  transition-timing-function: cubic-bezier(0.65, 0, 0.74, 0.99);
  transition-duration: 0.4s;
}
.pamore .btn:hover .btn-bg {
  left: calc(100% - 58px);
}

@media screen and (max-width: 480px){
.pamore{
    margin-top: 40px;
    margin-bottom: 35px;
}
  .pamore .btn-text{
    font-size: 17px;
}
}