/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */


    @keyframes dnfbg {
      from  {background-position: 0 0;}
      to    {background-position: 916px -221px;}
    }
    
    body {
     background-image:url('dnf.jpg');
     animation: dnfbg 20s linear 0s infinite;
     margin: 0;
     background-color: #000000; 
     color: #ffffff;
    }
    
    #player-box {
     background-color: #000000ad; 
     box-sizing: border-box;
    }
    
    #player {
     position: relative;
     background-image: url(metal.jpg); 
     border-radius:    20px;
     box-shadow:       6px 6px 3px 0px #000000c2, inset 0px 0 10px 1px #000000c2;
    }
    
    #prog, #info {
     position:         absolute;
     background-color: #000000; 
     border-radius:    10px;
     box-shadow:       2px 2px 4px white, -2px -2px 4px black;
    }

    #nums {
     position:         absolute;
    }

    #tune {
     left:             1%;
     bottom:           0;
     transition:       left 1s;
    }

    #scrub {
     left:             1%;
    }

    #tune, #scrub {
     position:         absolute;
     background-color: #ff0000b5;
     box-shadow: inset -2px 0 3px 0px #ffffff7a, inset 2px 0 3px 0px #00000096;
    }

    #title {
     margin: 0;
     color: #7efaf8;
    }
    
    #power {
     left:         1%;
     top:          3%;
     filter: saturate(0.5);
    }

    .pl_btn {
     position:     absolute;
     cursor: pointer;
     box-shadow:       2px 2px 4px white, -2px -2px 4px black;
     border-radius:    50%;
     width:  4%;
    }

    #vol {
     position:     absolute;
     height: 5px;
     background-color: #000000;
    }
    
    #pl {
      display:none;
    }
