* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  background: pink;
  min-height: 100vh;
}
.music-box {
  width: 350px;
  box-shadow: 8px 8px 5px rgba(225, 255, 255, 1),
    -8px -8px 5px rgba(225, 255, 255, 1);
}
.img-box {
  height: 350px;
  width: 100%;
  position: relative;
}
.img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
audio{
  background: #000;
  width: 100%;
  outline: none;
}