.container {
    width: 60%;
    margin: 0 auto;
    /* border:1px solid rgba(200,200,200,0.5); */
    border-radius:10px;
}
@media screen and (max-width:768px) {
    .container {
        width: 100%;
    }
}

.track {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    padding: 10px;
    /* border-radius:10px;
    margin: 20px 0; */
    border-radius:20px;
    margin: 20px 0;
    padding: 20px !important;
    padding-bottom: 25px !important;
}

.song-info {
    flex-grow: 1;
}

audio {
    width: 100%;
}

/* .track:nth-child(odd) {
    background-color: rgba(200,200,200,0.4);
}
.highlighted {
    background-color: rgba(0,100,200,0.25) !important;
} */
.select-btn {
    cursor: pointer;
    transition: all 200ms ease-in;
}
/* .select-btn:hover {
    background-color: blue;
} */

.song-cred {
    position: relative;
    top: -2px;
    border: 2px solid rgba(0,0,0,0.5);
    transition: all 200ms ease-in;
    margin-left: 10px;
}