/*<!-- <span class="coming-soon">COMING SOON</span> -->*/
/*place the span above a heading of a song release*/
.coming-soon {
    transform: rotate(10deg);
    margin-left: auto;
    background: red;
    color: white;
    padding: 0.2em 0.8em;
    font-weight: bold;
    font-size: clamp(16px, 3vw, 25px);
    border-radius: 4px;
    box-shadow: 0 0 8px red, 0 0 20px darkred;
    user-select: none;
    margin-bottom: -30px;
    /* margin-left: 200px; */
    animation: pulseGlow 1s infinite ease-in-out;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 8px red, 0 0 20px darkred;
    }

    50% {
        box-shadow: 0 0 14px red, 0 0 35px darkred;
    }
}