/* HandCoded By Chee Yong Lee */
/* View License https://github.com/leecheeyong/github-player */
* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #f2f2f2;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    background-color:rgb(78, 78, 78);
}

#playlist {
   background-color: rgb(78, 78, 78);
   padding: 4em;
   padding-bottom: 10em;
   padding-top: 6em;
   color: white;
   overflow: auto;
}

.music {
    border-bottom: .1em solid rgb(63, 63, 63);
    padding: .7em;
    cursor: pointer;
    font-size: 1em;
    text-align: center;
}

.control {
    position: fixed;
    width: 100%;
    background-color: rgb(78,78,78);
    height: 15vh;
    bottom: 0;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 1em;
    flex-direction: column;
}

#nowPlaying {
    margin-bottom: .2em;
    font-size: 1em;
}

.controlPanel {
    display:flex;
    flex-direction: row;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.caption {
    position: fixed;
    width: 100%;
    background-color: rgb(78,78,78);
    text-align: center;
    font-size: .7em;
    color: white;
    padding-top: .8em;
    padding-bottom: .5em;
}

a {
    text-decoration: none;
    color: white;
}

#search {
    color: rgb(179, 179, 179);
    display: block;
    margin: 0 auto;
    margin-top: 1em;
    text-align: center;
    width: 20vw;
    padding-bottom: .5em;
    border: 0;
    outline: 0;
    background: transparent;
    border-bottom: 1px solid rgb(155, 155, 155);
}

button {
    color: rgb(179, 179, 179);
    display: block;
    margin: 0 auto;
    padding: 1em;
    width: 20vw;
    cursor:pointer;
    text-align: center;
    border: 0;
    padding-bottom: .5em;
    background: transparent;
}

#lyrics {
    display: none;
    background-color: rgb(83, 83, 83);
    border: 0;
    position: fixed;
    overflow: auto;
    height: 85vh;
    width: 100%;
    text-align: center;
}

#lyrics > p {
    margin: 1.5em;
    font-size: 1.5em;
    line-height: 1.2em;
    color: white;
}

