@font-face{
    font-family: iransans;
    src: url('../fonts/IRANSansWeb(FaNum).ttf');
}
:root {
    --bg: #1a1e24;
    --color: #eee;
}

.wrapper {
    padding: 1.5rem 0;
    filter: url('#goo');
}

.button {
    display: inline-block;
    text-align: center;
    background: var(--color);
    color: var(--bg);
    font-weight: bold;
    padding: 15px 30px;
    line-height: 1;
    border-radius: 10px;
    position: relative;
    min-width: 8.23em;
    text-decoration: none;
}

.button:before,
.button:after {
    width: 4.4em;
    height: 2.95em;
    position: absolute;
    content: "";
    display: inline-block;
    background: var(--color);
    border-radius: 50%;
    transition: transform 0.4s ease;
    transform: scale(0);
    z-index: -1;
}

.button:before {
    top: -25%;
    left: 20%;
}

.button:after {
    bottom: -25%;
    right: 20%;
}

.button:hover {
    color: #6610f2;
    transition: 0.4s ease;
}

.button:hover:before,
.button:hover:after {
    transform: none;
}
