:root {--amarillo: #FFDA77; --rosa: #FF4DAF; --verde: #BAD94D; --azul: #291A5B; --morado: #990EFF; --turquesa: #00FAFF; --blanco: #FFFFFF;} /*el root sirve para tener presets*/
body {
  background-color: #ffffff;
  background-repeat: repeat;
  background-size: 30%;
  background-image: url(https://file.garden/aPhafyfWwy2mETf4/Pinkrd/fondo.png);
  
  color: #291A5B;
  font-family: "arial";
}
#musicplayer{
    color: #ffffff;
    font-family:'Arial'; /* default font */
    background:#ff4daf; /* background color of player */
    border:0px solid #FF4DAF; /* border around player */
    width:200px; /* width of the player - make it 100% if you want it to fill your container */
    padding:10px;
    text-align:center; 
    display:flex;
    flex-direction:column;
    gap:10px;
}

.songtitle, .track-info, .now-playing{
    padding:5px;
}

.controls{
    display:flex; 
    flex-direction:column; 
}

.buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
}

.buttons div{
    width:33.3%;
}

.seeking, .volume{
    display:flex;
    flex-direction:row;
    align-items:center;
    gap:5px;
}

.now-playing, .track-info{
    background-color:#FF4DAF; /* background color of top two boxes */
}

.now-playing{
    font-weight:bold;
}

.material-icons{
    color: #ffffff;
}

input[type=range]{
    -webkit-appearance:none; /* removes default appearance of the tracks */
    appearance:none;
    width:100%;
    background-color:inherit;
}

input[type=range]:focus{
    outline:none; /* removes outline around tracks when focusing */
}

input[type=range]::-webkit-slider-runnable-track{
    width:100%;
    height:4px; /* thickness of seeking track */
    background:#ffffff; /* color of seeking track */
}

input[type=range]::-webkit-slider-thumb{
    height:10px; /* height of seeking square */
    width:10px; /* width of seeking square */
    border-radius:0; /* change to 5px if you want a circle seeker */
    background:#ffffff; /* color of seeker square */
    -webkit-appearance:none;
    margin-top:-3px; /* fixes the weird margin around the seeker square in chrome */
}

input[type=range]::-moz-range-track{
    width:100%;
    height:4px; /* thickness of seeking track */
    background:#FF4DAF; /* color of seeking track */
}

input[type=range]::-moz-range-thumb{
    height:10px; /* height of seeking square */
    width:10px; /* width of seeking square */
    border-radius:0; /* change to 5px if you want a circle seeker */
    background:#FF4DAF; /* color of seeker square */
    border:none; /* removes weird border around seeker square in firefox */
}