.btn {
    color: #383838;
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    padding: 20px;
    border-radius: 1000px;
    border: 1px solid rgba(128, 128, 128, 0.55);
    background: rgba(255, 255, 255, 0.05);
    text-align: center;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 10px;
    text-decoration: none;
    position: relative;
}
.btn a{
    color: #383838;
    text-decoration: none;
}

.icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn .btn-w100 {
    width: 100%;
}

@media only screen and (max-width: 568px) {
    .btn {
        padding: 12px 12px;
    }
}