.badge {
    position: relative;
    letter-spacing: 0.08em;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    transform: rotate(-14deg);
    text-align: center;
    filter: drop-shadow(0.25em 0.7em 0.95em rgba(0, 0, 0, 0.8));
   /* min-size + (max-size - min-size) * ( (100vw - min-width) / ( max-width - min-width) ) */
    font-size: 26px;
    margin-top: 5%;
   margin-bottom: 10%;
}

.badge::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 5em;
    height: 5em;
    border-radius: 100%;
    opacity: 0.8;
    transition: opacity 0.3s linear;
}
.badge:hover {
    color: #fff;
    text-decoration: none;
    transform: rotate(-10deg) scale(1.05);
}
.badge:hover::before {
    opacity: 0.9;
}
.badge svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    z-index: 0;
    width: 5em;
    height: 5em;
}
.badge span {
    display: block;
    border-radius: 0.4em;
    padding: 0.4em 1em;
    z-index: 1;
    min-width:11em;
    border: 1px solid;
    text-transform: uppercase;
    font-size: 20px;
}