/* INLINE AUDIO PLAYER WIDGET */
.section-player {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.player-title-wrapper {
    display: flex;
    flex-direction: row;
    margin: 1rem;
}

.player-title-wrapper img {
    height: 75%;
    margin: 0 1rem;
    height: 6rem;
}

.player-title-subwrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.player-title {
    font-family: 'Panchi Mono';
    font-size: 42px;
    font-weight: 800;
    text-align: center;
}

.player-lautfm {
    font-family: 'Pinyon Script';
    font-size: 16px;
    text-align: center;
}

@keyframes pulseBorder {
    0% {
        border: solid 2px transparent;
    }
    50% {
        border: solid 2px white;
    }
    100% {
        border: solid 2px transparent;
    }
    
}