* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  display: flex;
  background: linear-gradient(45deg, #e91e63, #fffde7);
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.player {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 350px;
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
}
.player .imgBx {
  position: relative;
  width: 100%;
  height: 350px;
}
.player .imgBx img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.player audio {
  width: 100%;
  outline: none;
}/*# sourceMappingURL=styles.css.map */