.button {
    position: relative;
    border-radius: 100px;
    cursor: pointer;
    overflow: hidden;
    display: inline-block;
    color: white;
    transition: all 0.5s ease;
    backdrop-filter: blur(100px);
    border: 1px solid rgba(55, 55, 55, 0.1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    min-height: 40px;
    min-width: 60px;
    margin: 5px;
    text-decoration: none;
    align-content: center;
}

.button:hover{
    transform: scale(1.025);
    background: white;
    color: red;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.button p {
    padding-bottom: 5px;
}

/* Inner content */
.button p::after {
    content: ">";
    padding-left: 5px;
    opacity: 50%;
    font-size: 75%;
    transition: all 0.5s ease;
}

.button:hover p::after {
    content: ">";
    padding-left: 5px;
    opacity: 70%;
    font-size: 100%;
    color: black;
}