html {
    font-size: 25px;
}

.pageInBtn>div {
    margin: 0 auto;
    position: relative;
    border-radius: 3rem;
    border: 0.3rem solid #d0667f;
    color: #202020;
    padding: 1rem 0;
    overflow: hidden;
    width: 85%;
}

.pageInBtn>div::after {
    position: absolute;
    transform: translate(-50%, -50%) rotate(-45deg);
    top: 45%;
    left: 86%;
    content: "\eafa";
    font-family: 'xeicon';
    font-size: 7.5rem;
    color: hsla(0, 0%, 100%, 0.20);
    z-index: -1;
}

.pageInBtn>div {
    text-align: center;
}

.pageInBtn>div>p {
    font-size: 1.8rem;
    line-height: 1.8rem;
    font-weight: bold;
    letter-spacing: -0.05rem;
}

@media only screen and (min-width: 360px) and (max-width: 500px) {

    .pageInBtn>div {
        margin: 0 auto;
        position: relative;
        border-radius: 30px;
        border: 3px solid #d0667f;
        color: #202020;
        padding: 10px 0;
        overflow: hidden;
        width: 90%;
    }

    .pageInBtn>div::after {
        position: absolute;
        transform: translate(-50%, -50%) rotate(-45deg);
        top: 45%;
        left: 86%;
        content: "\eafa";
        font-family: 'xeicon';
        font-size: 75px;
        color: hsla(0, 0%, 100%, 0.20);
        z-index: -1;
    }

    .pageInBtn>div {
        text-align: center;
    }

    .pageInBtn>div>p {
        font-size: 18px;
        line-height: 18px;
        font-weight: bold;
        letter-spacing: -0.5px;
    }
}