:root {
    --musicplayerprimarycolor: #c4aef4;
    --musicplayersecondarycolor: black;
}

.body {
    margin: 0;
    padding: 0;
}

.centertext {
    justify-self: center;
    align-self: center;
}

.player-container {
    position:fixed;
    display: grid;
    visibility: hidden;
    grid-template-columns: 1fr 2fr 1fr;
    padding: 5px 10px;
    box-sizing:border-box;
    width: 800px;
    bottom: 0;
    justify-content: space-evenly;
    text-align: center;
    border-style: solid;
    border-width: 3px;
    border-bottom-width: 0px;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    background-color:var(--musicplayerprimarycolor);
    background-image:url("img/websitebackground3.png");
}

.player {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info {
    display:flex;
    justify-content: left;
    align-self: center;
}

#progress {
    transition: all 1s linear;
    width: var(--)
}

.control {
    display:flex;
    justify-content: center;
}

#current {
    text-align:right;
}
#total {
    text-align: right;
}

.control-bar {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.bar {
    width: 200px;
    margin: 5px;
    border-radius: 5px;
    background-color:white;
}

#progress {
    width: var(--progress, 0%);
    border-radius: 5px;
    background-color:var(--musicplayersecondarycolor);
    transition: all 1s linear;
    height: 100%;
}

.volume {
    display:flex;
    justify-content: right;
    align-self: center;
}

#volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100px;
    height: 6px;
    align-self:center;
    margin: 0px 5px;

    border-radius: 5px;
}

#volume-slider::-webkit-slider-thumb { /* slider handle */
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 25px;
    background-color:var(--musicplayersecondarycolor);
    border-radius: 4px;
}

#volume-slider::-moz-range-thumb { /* slider handle for moz firefox i think */
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 15px;
    background-color:var(--musicplayersecondarycolor);
    border-radius: 4px;
}

#volume-output {
    width: 30px;
}





/*TEST MUSIC*/
#fromulouspanetheme {
    width: 100px;
    height: 100px;
    border-width: 3px;
    border-color:var(--musicplayersecondarycolor);
    border-style:solid;
}

#riseofthedamnedtheme {
    width: 100px;
    height: 100px;
    border-width: 3px;
    border-color:var(--musicplayersecondarycolor);
    border-style:solid;
}