@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html {
  font-size: 62.5%; }
  @media (max-width: 75em) {
    html {
      font-size: 56.25%; } }
  @media (max-width: 56.25em) {
    html {
      font-size: 50%; } }

body {
  box-sizing: border-box; }

body {
  font-size: 1.6rem;
  font-family: 'Roboto', sans-serif;
  color: #fff; }

.backdrop {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1; }

.music__container {
  min-height: calc(var(--vh, 1vh) * 100);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between; }

.music__details {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem; }
  @media (max-width: 37.5em) {
    .music__details {
      flex-direction: column; } }
  .music__details .img-container {
    position: relative;
    width: 40rem;
    height: 40rem;
    border-radius: 50%;
    border: 1rem solid #fff; }
    @media (max-width: 37.5em) {
      .music__details .img-container {
        width: 30rem;
        height: 30rem; } }
    .music__details .img-container::before {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      content: '';
      background: #fff;
      width: 5rem;
      height: 5rem;
      border-radius: 50%; }
  .music__details--text {
    margin-left: 10rem;
    width: 55vw;
    text-align: center; }
    @media (max-width: 37.5em) {
      .music__details--text {
        margin-left: 0;
        margin-top: 3rem; } }
    .music__details--text h2 {
      font-size: 10rem;
      text-shadow: 1rem 1rem 3rem black; }
      @media (max-width: 37.5em) {
        .music__details--text h2 {
          font-size: 5rem; } }
    .music__details--text h3 {
      font-weight: 400;
      font-size: 5rem;
      margin-bottom: 3rem;
      text-shadow: 1rem 1rem 3rem black; }
    .music__details--text span {
      font-weight: bold;
      font-size: 4rem;
      margin: 5rem 1rem; }

.music__player {
  background: #797878; }

.music__progress {
  height: 1rem;
  background: #b1aeae;
  width: 100%;
  cursor: pointer; }
  .music__progress--bar {
    height: 100%;
    background: #000;
    width: 0%;
    border-radius: 50px;
    transition: width .2s; }

.icon-container {
  display: flex;
  justify-content: space-between; }
  .icon-container .fas {
    font-size: 10rem;
    color: #b1aeae;
    margin: 4rem 4rem;
    cursor: pointer;
    transition: color .5s; }
    @media (max-width: 37.5em) {
      .icon-container .fas {
        font-size: 5rem; } }
    .icon-container .fas:hover {
      color: #000; }

@keyframes rotate {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }
