* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 10px;
  color: #fff;
}

.background {
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%), url(bg.jpg) 100%/cover no-repeat;
  transform: scale(1.1);
  width: 100vw;
  height: 100vh;
  filter: blur(5px);
}

.wrapper {
  position: fixed;
  top: 0;
  display: flex;
  width: 100vw;
  height: 100vh;
  justify-content: center;
}

.app__container {
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  max-width: 500px;
  margin: 0 auto;
}

.album-cover__image {
  margin-top: 5vh;
  width: 70%;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.8);
}

h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 0;
}

h6 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0;
  text-decoration: none;
  font-weight: 100;
}

p {
  margin-top: 0;
  color: #cbcdd3;
  font-size: 1.2rem;
}

.audio-progress__container {
  width: 80%;
  margin-bottom: 2rem;
}

.audio-progress__bar {
  width: 100%;
  height: 0.2rem;
  background-color: #4e4e4e;
  opacity: 1;
  border-radius: 2px;
}

.audio-progress__bar__white {
  width: 0;
  height: 0.2rem;
  background: #fff;
  border-radius: 2px;
}

.audio-progress__handle {
  display: block;
  position: absolute;
  z-index: 103;
  margin-top: -0.4rem;
  margin-left: -0.2rem;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #fff;
  cursor: pointer;
  transform: translateX(0);
}

.audio-controls__container {
  display: inline-block;
}

img:hover {
  filter: brightness(0.6);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.hide {
  display: none;
}