* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-image: linear-gradient(to bottom right, #201c13, #3d321c, #3f2c0c);
}

.player {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  width: 350px;
  background-color: #F1F3F4;
  box-shadow: 0px 0px 40px white;
}
.player .img-box {
  position: relative;
  width: 100%;
  height: 350px;
}
.player .img-box img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.player audio {
  width: 100%;
  outline: none;
}/*# sourceMappingURL=style.css.map */