* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Jacques Francois Shadow", serif;
    text-align: center;
}

html, body {
    width: 100%;
    height: 100%;
    background-color: rgb(173, 196, 190);
    overflow: hidden;
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 100vh;
}

.player {
    width: 100%;
    max-width: 22rem;
    border-radius: 2em;
    padding: 1em;
    margin: 5em auto 4em;
    background-color: rgb(209, 228, 223);
}
@media (max-width:500px) {
    .player {
    max-width: 300px;
    } 
}

.title {
    margin-top: 0.3em;
    font-weight: 700;
}

.subtitle {
    padding: 0;
}

.image {
    margin: 1em;
    width: 13em;
    border-radius: 0.5em;
}
@media (max-width:500px) {
    .image {
    width: 10em;
    } 
}

.time-info {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
    font-size: 1em;
    font-weight: bold;
    color: rgb(94, 108, 104);
    font-family: monospace;
}

.current-time, .duration {
    font-family: monospace;
}

.progress__container {
    display: flex;
    align-items: center;
    margin: 0 auto 1em;
    width: 80%;
    height: 10px;
    border-radius: 5px;
    background-color: azure;
    cursor: pointer;
}

.progress {
    height: 10px;
    border-radius: 5px;
    background-color: rgb(157, 184, 177);
}

.buttons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 80%;
    margin: 10px auto;
}

.btn img {
    width: 2em;
    height: 2em;
    cursor: pointer;
}

.change img {
    width: 3em;
    height: 3em;
}

.footer {
    display: flex;
    justify-content: space-around;
    width: 100%;
    padding: 1em 0;
  }

  h2 {
    padding: 0.3em 3.3em 0 0;
  }
  @media (max-width:500px) {
    h2 {
    padding: 0 1.7em 0 0;
    } 
}
  
  .icon__footer {
    width: 20%;
    transition: transform 0.7s ease-in-out;
  }
  
  .icon__footer__rs {
    width: 50%;
    transition: transform 0.7s ease-in-out;
  }
  
  .icon__footer:hover, .icon__footer__rs:hover {
    transform: scale(1.1);
  }