*, * ::before, * ::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    background: none;
    text-decoration: none;
    outline: none;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    font-style: inherit;
    color: inherit;
    border: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing:grayscale
}

* :visited, * :active {
    color:inherit
}

:root {
    --c-bg: hsl(0, 0%, 100%);
    --c-bg-light: hsl(0, 0%, 97%);
    --c-high: hsla(54, 100%, 62%, 0.4);
    --c-high-light: hsla(54, 100%, 62%, 0.9);
    --c-text: hsl(0, 0%, 25%);
    --c-text-mid: hsl(0, 0%, 50%);
    --c-text-light: hsl(0, 0%, 97%);
    --f-family: "Segoe UI", 
             "Roboto", 
             "Oxygen", 
             "Ubuntu", 
             "Cantarell", 
             "Fira Sans", 
             "Droid Sans", 
             "Helvetica Neue", 
             Arial, sans-serif;
    --f-mono: "SF Mono", Consolas, monaco, monospace;
    --f-size: 14px;
    --f-lineheight: 24px;
    --f-weight: 400;
    --f-style: normal;
    --f-scale-s: 0.889;
    --f-scale-m: 1.2;
    --f-scale-l: 1.4;
    --f-scale-xl: 1.6;
    --f-scale-xxl: 2.2;
    --l-narrower: 9rem;
    --l-narrow: 18rem;
    --l-regular: 24rem;
    --l-wide: 36rem;
    font-size: var(--f-lineheight);
    font-family: var(--f-family);
    font-weight: var(--f-weight);
    font-style: var(--f-style);
    text-align: var(--f-alignment);
    background: var(--c-bg);
    color:var(--c-text)
}

@media (min-width: 500px) {
    :root {
        --f-size: 17px;
        --f-lineheight: 32px
    }
}

@media (min-width: 2000px) {
    :root {
        --f-size: 20px;
        --f-lineheight: 38px
    }
}

::selection {
    background: var(--c-high);
    color:var(--c-text)
}

body {
    padding:5rem 1.5rem 1.5rem;
    text-align: center;
    background-color: #191919;
}

*, * ::before, * ::after {
    font-size: var(--f-size);
    line-height:1rem
}

h1, h2, h3, h4, h5, h6, p, ul, ol, blockquote, pre, hr, figure {
    margin-right: auto;
    margin-left: auto;
    max-width:var(--l-narrow)
    color: #FFFFFF;
}

h1 {
    font-size: calc(var(--f-size) * var(--f-scale-xl));
    line-height: 1.3rem;
    padding-bottom: .35rem;
    padding-top: .35rem;
    font-weight: 600;
    margin-bottom:2rem
}

h2, h3 {
    font-size: calc(var(--f-size) * var(--f-scale-l));
    line-height: 1.3rem;
    padding-top: .35rem;
    padding-bottom: .35rem;
    font-weight:600
}

h4, h5, h6 {
    font-size: calc(var(--f-size) * var(--f-scale-m));
    line-height: 1rem;
    font-weight:600
}

a {
    font-weight: inherit;
    font-size:inherit;
    color: #00A1FE;
}

a:hover {text-decoration: line-through;}

p {
    // text-indent:1rem;
    padding-bottom: 1rem;
    color: #FFFFFF;
    max-width: 768px;
}

strong, b {
    font-weight:600
}

em, i {
    font-style:italic
}


.img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 2px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left:0
}

.text {
    margin-bottom:3rem
}

.footer {
    margin-top: 3rem;
    text-align:center;
    color: #FFFFFF;
}

.footer-item {
    font-size: calc(var(--f-size) * var(--f-scale-s));
    line-height: .8rem;
    padding-top: .1rem;
    padding-bottom: .1rem;
    background: linear-gradient(to right, var(--c-high), var(--c-high-light));
    background-size: 300% 40%;
    background-repeat: no-repeat;
    background-position: 0% 100%;
    transition-property: background-position;
    transition-duration: 300ms;
    padding: 0;
    margin:0 .15rem
}

.footer-item:hover {
    background-position: 100% 100%
}

.responsive-image {
  width: 100%;
  max-width: 768px;
  height: auto;
}



/* ----------- syle guide for player ------------ */
#player-container {
  /* position: absolute; 
  top: 50%;
  right: 0;
  left: 0; */
  width: 430px;
  height: 100px;
  margin: 80px auto auto auto;
}

#player-bg-artwork {
  position: fixed;
  top: -30px;
  right: -30px;
  bottom: -30px;
  left: -30px;
  background-image: url("https://raw.githubusercontent.com/himalayasingh/music-player-1/master/img/_1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  filter: blur(40px);
  -webkit-filter: blur(40px);
  z-index: 1;
}

#player-bg-layer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  opacity: 0.5;
  z-index: 2;
}

#player {
  position: relative;
  height: 100%;
  z-index: 3;
}

#player-track {
  position: absolute;
  top: 0;
  right: 15px;
  left: 15px;
  padding: 10px 22px 24px 184px;
  background-color: #fff7f7;
  border-radius: 15px 15px 0 0;
  transition: 0.3s ease top;
  z-index: 1;
}

#player-track.active {
  top: -92px;
}

#album-name {
  color: #00A1FE;
  font-size: 17px;
  font-weight: bold;
  margin-top: -10px;
  text-align: left;
}

#track-name {
  color: #191919;
  font-size: 13px;
  padding: 0px auto 0px auto;
  margin: -20px 0 5px 0;
  text-align: left;
}

#track-time {
  height: 24px;
  margin: -20px auto 10px auto;
  overflow: hidden;
}

#current-time {
  float: left;
}

#track-length {
  float: right;
}

#current-time,
#track-length {
  color: transparent;
  font-size: 12px;
  background-color: #ffe8ee;
  border-radius: 10px;
  transition: 0.3s ease all;
}

#track-time.active #current-time,
#track-time.active #track-length {
  color: #f86d92;
  background-color: transparent;
}

#seek-bar-container,
#seek-bar {
  position: relative;
  height: 4px;
  border-radius: 4px;
}

#seek-bar-container {
  background-color: #ffe8ee;
  cursor: pointer;
}

#seek-time {
  position: absolute;
  top: -8px;
  color: #f86d92;
  font-size: 12px;
  white-space: pre;
  padding: 2px 6px;
  border-radius: 4px;
  display: none;
}

#s-hover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  opacity: 0.2;
  z-index: 2;
}

#seek-time,
#s-hover {
  background-color: transparent; /*3b3d50*/
}

#seek-bar {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: #fd6d94;
  transition: 0.2s ease width;
  z-index: 1;
}

#player-content {
  position: relative;
  height: 100%;
  background-color: #fff;
  box-shadow: 0 30px 80px #656565;
  border-radius: 15px;
  z-index: 2;
}

#album-art {
  position: absolute;
  top: -40px;
  width: 115px;
  height: 115px;
  margin-left: 40px;
  transform: rotateZ(0);
  transition: 0.3s ease all;
  box-shadow: 0 0 0 10px #fff;
  border-radius: 50%;
  overflow: hidden;
}

#album-art.active {
  top: -60px;
  box-shadow: 0 0 0 4px #fff7f7, 0 30px 50px -15px #afb7c1;
}

#album-art:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  width: 20px;
  height: 20px;
  margin: -10px auto 0 auto;
  background-color: #d6dee7;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px #fff;
  z-index: 2;
}

#album-art img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
}

#album-art img.active {
  opacity: 1;
  z-index: 1;
}

#album-art.active img.active {
  z-index: 1;
  animation: rotateAlbumArt 3s linear 0s infinite forwards;
}

@keyframes rotateAlbumArt {
  0% {
    transform: rotateZ(0);
  }
  100% {
    transform: rotateZ(360deg);
  }
}

#buffer-box {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 13px;
  color: #1f1f1f;
  font-size: 13px;
  font-family: Helvetica;
  text-align: center;
  font-weight: bold;
  line-height: 1;
  padding: 6px;
  margin: -12px auto 0 auto;
  background-color: rgba(255, 255, 255, 0.19);
  opacity: 0;
  z-index: 2;
}

#album-art img,
#buffer-box {
  transition: 0.1s linear all;
}

#album-art.buffering img {
  opacity: 0.25;
}

#album-art.buffering img.active {
  opacity: 0.8;
  filter: blur(2px);
  -webkit-filter: blur(2px);
}

#album-art.buffering #buffer-box {
  opacity: 1;
}

#player-controls {
  width: 250px;
  height: 100%;
  margin: 0 5px 0 141px;
  float: right;
  overflow: hidden;
}

.control {
  width: 33.333%;
  float: left;
  padding: 12px 0;
}

.button {
  width: 26px;
  height: 26px;
  padding: 25px;
  background-color: #fff;
  border-radius: 6px;
  cursor: pointer;
}

.button i {
  display: block;
  color: #191919; /* d6dee7 */
  font-size: 36px;
  text-align: center;
  line-height: 1;
  margin: -24px 0 0 -6px;
}

.button,
.button i {
  transition: 0.2s ease all;
}

.button:hover {
  background-color: #d6d6de;
}

.button:hover i {
  color: #fff;
}

@font-face {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 900;
    font-size: 36px;
    src: url(../fonts/fa-solid-900.eot);
    src: url(../fonts/fa-solid-900.eot?#iefix) format("embedded-opentype"), url(../fonts/fa-solid-900.woff2) format("woff2"), url(../fonts/fa-solid-900.woff) format("woff"), url(../fonts/fa-solid-900.ttf) format("truetype"), url(../fonts/fa-solid-900.svg#fontawesome) format("svg")
}

.fa, .far, .fas {
    font-family: "Font Awesome 5 Free"
}

.fa, .fas {
    font-weight: 900
}




