body{
    --theme-color: #004895;
    --theme-text-color: white;
    --accent-color: #e4f21f;
    --background-color: #1b1b1b;
    margin: 0px;
    font-family: sans-serif;
    background-color: var(--background-color);
}

music-artist{
    color: var(--theme-text-color);
    margin: 10vh 0;
}
music-artist .bio{
    font-size: 0.5em !important;
}

music-player{
    background-color: var(--theme-color);
    color: var(--theme-text-color);
}

music-player .title{
    font-size: 2.5em !important;
}

#list{
    margin-top: 5vh;
    width: calc(90vw);
    max-width: 90vh;
    padding-bottom: 10vh;
    margin-left: auto;
    margin-right: auto;
}

#songs{
    margin-top: 10vh;
    margin-bottom: 5vh;
}

#footer{
    color: var(--theme-text-color);
    text-align: center;
    font-size: 1em;
    position: fixed;
    width: 100vw;
    bottom: 0px;
    left: 0px;
    background-color: var(--background-color);
}