.audio-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 100%;
    background-color: black;
    margin: auto;
}

.song-title-container {
    flex-grow: 1;
    height: 100%;
    font-size: 1.8rem;
    color: white;
    text-align: center;
    /* background-color: rgba(245, 40, 145, 0.3); */
}

.song-title {
    height: 100%;
    vertical-align: middle;
}

.player-buttons {
    min-width: 40px;
    height: 100%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.player-buttons:hover {
    color: grey;
    transition: 0.3s;
}
