*{
        font-family: 'Noto Sans', sans-serif;
        overflow-x: hidden;
}


html {
    min-height: 100vh;
    background-image: 
     url(https://kidcalyps0.com/WebBckGrd1_1.png);
    background-size: cover;
    background-position-x: center;

  
}

a:any-link {
 color: #ebd6ff;
 font-size: clamp(1rem, 3vw, 5em);
}

.mp3player {
  display: flex ;
  justify-content: center;
  align-items:center;
  flex-direction: column;
  height: 90vh;
  background-image: url(wmprunaway.png);
  background-size: contain;
  background-position-x: center;
  background-repeat: no-repeat;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}

.audioplayer {
  position: relative;
  top: 34%;
  
}

.presave {
  margin-top: 30px;
  position: relative;
  top: 34%;
  
}

.presave a {
  color: black;
  font-size: 20px;
}

.download{
  margin-top: 30px;
  text-align: center
 
}

/* failed mp3 player
.plaque{
  padding:20px;
  width: 440px;
  text-align: center;
  position: relative;
  top: 34%;
  
}

.song-info{
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}

.song-details{
  text-align: left;
  
}

.song-info h2{
  margin: 0;
  font-size: 18px;
  
}

.song-info p{
  margin:5px 0 0;
  font-size: 14px;
}

.heart{
  background:none ;
  color: #ff0000;
  font-size: 20px;
  border: none;
  cursor: pointer;

}

.heart:active {
  transform: scale(0.95);
}

.progress-bar{
  display: flex;
  align-items: center;
  margin: 20px 0;
  
}

#seek-bar{
  flex-grow: 1;
  cursor:pointer;
  
}

.controls{
  display: flex;
  justify-content: space-around;
  align-items: center;

}

.controls button{
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  
}

.controls button:active{
  transform: scale(0.95)
}

#play-pause{
  font-size: 35px;
}

.bottom-row {
  margin-top:25px;
}

.bottom-row a{
  color: black;
  font-size: 20px;
}

/*




/* Here we start */
    nav {
      background-color: black;
      color: #ebd6ff;
      display: flex;
      justify-content: space-between;
    }

    nav ul {
      /* Make the markers disappear */
      list-style-type: none;
    }

    nav ul li {
      /* Puts the elements in a single line */
      display: inline-flex;
      margin: 0.3em 1em;
    }

    /* These two lines make the checkbox and the label disappear when we are in desktop mode. */
    nav input[type="checkbox"],
    nav label {
      display: none;
    }

    /* This start to get interesting: we go into mobile phone mode */
    @media (max-width: 576px) {
      /* Here is the magic: if the checkbox is not marked, the adjacent list is not displayed */
      input[type="checkbox"]:not(:checked) + ul {
        display: none;
      }

      nav {
        flex-direction: row;
        flex-wrap: wrap;
        margin-left: 0;
        margin-right: 0;
      }

      /* Stlying the menu icon, the checkbox stays hidden */
      nav label {
        text-align: right;
        display: block;
        padding: 0.5em;
        line-height: 3em;
        align-self: center;
      }

      /* Because we are in mobile mode, we want to display it as a vertical list */
      nav ul {
        display: block;
      }

      /* We have two lists: the first one are the always visibile items in the 
        menu bar. The second one is the one that will be hidden */
      nav ul:last-child {
        width: 100%;
        flex-basis: 100%;
      }

      nav ul li {
        margin-bottom: 0;
        width: 100%;
        text-align: right;
        padding: 0.5em;
      }
}
