@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');
html,
body {
  margin: 0;
  padding: 0;
}

body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

/* container for music player */
.container {
  position: absolute;
  z-index: 4;
  height: 15pt;
  width: 220pt;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(126, 126, 126,0);
}

/* track title */
.song-title {
  position: absolute;
  z-index: 4;
  color: #c2c2c2;
  font-family: 'Montserrat', sans-serif;
  font-weight: 550;
  font-size: 9px;
  letter-spacing: 8px;
  bottom: 25%;
  left: 12%;
}

/* style for play and pause images */
#play-pause {

  position: absolute;
  z-index: 4;
  height: 9px;
  width: 9px;
  cursor: pointer;
  bottom: 25%;
  left: 5%;
  /*font-size: 10px;
  filter: invert(1);*/

}

*{
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}