body {
    background-image: linear-gradient(
        #354554,
        #1F242A
        );
    height: 100vh;
    color: white;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

button {
   background-color: inherit;
   color: inherit;
   border: none;
}

#below-cover{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 3em 0 1em 0;
}

#button-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.button {
    font-size: 1.5em;
}

.button-navigate {
    font-size: 3em;
}

.button-biggest {
    font-size: 4em;
}

#cover {
    width: 450px;
}

/*.music-container {
    background-color: yellow;
}*/
#playlist-title {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 1em 0 4em 0;

}
#song-name {
    font-size: 1.5em;
    font-weight: bolder;
}
.light-color {
    color: rgb(139,153,156);
}
#progress-bar {
    background-color: rgb(139,153,156);
    height: 3px;
    width: 100%;
    border-radius: 15px;
    margin-bottom: 1em;
}

#current-progress {
    background-color: white;
    height: inherit;
    width: 50%;
    border-radius: inherit;
}