@import url(https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap);
body, html {
  margin: 0;
  padding: 0;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Nunito", sans-serif;
  background: linear-gradient(to top, var(--primary), var(--secondary));
  min-height: 100vh;
}

.release {
  width: 320px;
}
.release-head {
  position: relative;
}
.release-head__image {
  position: relative;
  z-index: 1;
}
.release-head .player {
  position: absolute;
  height: 80px;
  width: 80px;
  top: calc(50% - 40px);
  left: calc(50% - 40px);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.release-head .player.hidden {
  display: none;
}

.release-head .player img.playing {
    margin-left: 0;
}

.release-head .player img {
  width: 50%;
  height: 50%;
    margin-left: 10px;
}
.release-head:hover > .player {
  opacity: 1;
}
.release-mid {
  background: #181818;
  text-align: center;
  color: #fff;
  padding: 15px 0 2px;
  position: relative;
}
.release-mid__artist {
  margin: 0 auto 10px;
}
.release-mid__title {
  margin: 0 auto 15px;
}
.release-mid::after {
  height: 20px;
  width: 20px;
  content: "";
  position: absolute;
  bottom: -20px;
  left: calc(50% - 10px);
  -webkit-clip-path: polygon(51% 50%, 0 0, 100% 0);
          clip-path: polygon(51% 50%, 0 0, 100% 0);
  background: #181818;
}
.release-body {
  padding: 5px 0 10px;
  background: #fff;
}
.release-service {
  height: 50px;
  display: block;
  padding: 10px 20px;
  text-align: center;
}
.release-service img {
  height: 50px;
  width: 100%;
  max-width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}
.release-service:hover {
  transition: all 0.1s linear;
  background: #F3F3F3;
}
