/*----------Tunes Specific Formatting----------*/
/*Tunes Container*/
.tunes-container {
    margin: 1em 5% 2em;
    padding: 1em 1em 5em;
}

.tunes-container h2 {
    margin-bottom: 2em;
}

.tunes-container h3 {
    margin-bottom: 0;
}

.tunes-container ul{
    margin: 0;
    list-style: none;
}

.tunes-container ul li {
    display: block;
    margin-bottom: 2em;
}



.tunes-container ul li a{
    color: white;
    text-decoration: none;
    position: absolute;
    margin: 0 2em;
    left: 45%;
    padding: 0.2em 1em;
    background-color: rgb(25, 25, 25);
    border-radius: 20px;
    border-style: solid;
    border-width: thin;
    border-color: whitesmoke;
}
@media only screen and (min-width: 800px) {
    .tunes-container ul li a {
        margin: 0 5em;
    }
}

.tunes-container ul li a:hover {
    background-color: rgb(50,50,50);
}

/*Extra Song Info Container*/
.song-box {
    position: relative;
    margin: 2em 5%;
    padding: 3.5em 2em 5em;
    background-color: rgb(25, 25, 25);   
}

.song-sub-container {
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
}

.song-box h2 {
    text-align: center;
}

/*Song info exit button*/
.song-exit-btn {
    position: absolute;
    right: 20px;
    top: 15px;
}

.song-exit-btn img {
    width: 15px;
    cursor: pointer;
}