* {
	margin: 0;
	padding: 0;
}

body {
    height: 100vh;  
    display: flex;  
    justify-content: center;  
    align-items: center;  
    overflow:hidden;
  }

.music-player {
    display: flex; 
    align-items: center;  
    background-color: transparent;
    padding: 20px;
    border-radius: 20px;
    width: 70%; 
    max-width: 600px;
    margin-left: 400px;
}

.music-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    margin-right: 20%;
}   

h2 {
    font-size: 20px;
    margin: 0;
    padding-bottom: 25px;
    display: flex;
    justify-content: center;
    font-family: "Monoton", sans-serif;
    font-size: 50px;
    color: #F63D7D;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 30px;
}
    
h3 {
    margin: 5px 0;
    font-family: "Montserrat Alternates", sans-serif;
    color: #F63D7D; 
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
}

.artist-name {
  font-size: 28px;
}

.record img {
    position: absolute; 
    left: -490px; 
    transform: translateY(-50%);
    transform-origin: center;
    width: 1100px; 
    height: auto;
    top: 500px;
    transition: transform 0.5s ease-in-out;
    background: transparent;
}

.album-cover img {
    width: 370px;
    border-radius: 3600px;
    position: absolute;
    left: -129px;
    top: 500px;
    transform: translateY(-52%);
}  

/* Keyframe code and spinning code from ChatGPT https://chatgpt.com/share/67f7e0b5-28cc-8000-a1f0-060f2da9f542 */
@keyframes spin {
  from {
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

.spinning {
  animation: spin 3s linear infinite;
}

.tone-arm img {
    position: absolute;
    left: 300px;
    transform: translateY(-50%);
    width: 500px;
    height: auto;
}

#Blob1 {
  width: 1200px;
  height: 670px;
  right: 0px;
  bottom: 0px;
  position: absolute;
  /* z-index from https://www.w3schools.com/css/css_z-index.asp#:~:text=of%20an%20element.-,The%20z%2Dindex%20Property,or%20behind%2C%20the%20others). */
  z-index: -1; 
}


#Blob2 {
  width: 500px;
  height: auto;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: -1;
}

#Blob3 {
  width: 1000px;
  height: auto;
  position: absolute;
  top: 0px;
  left: 80px;
  z-index: -1;
}

.controls {
    display: flex;
    justify-content: center; 
    align-items: center;   
    gap: 15px;
    padding-bottom: 20px;
}

.controls button {
    border-radius: 50px;
    border: 6px solid #A7A7A7;
    background: #E5EAED;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    width: 120px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#shuffle {
    width: 60px;
    height: 35px;
    z-index: 999;
}

#repeat {
    width: 60px;
    height: 35px;
}

#previousSongLine, #nextSongLine {
    height: 33px;
} 

#progress-bar{
    width: 100%;
    height: 10px;
    background-color: #A7A7A7;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-right: 10%;
    border-radius: 40px;
    overflow: hidden;
    cursor: pointer;
    transition: width 0.1s linear;
    overflow: hidden;
}

#myBar {
  width: 0%;
  height: 10px;
  background-color: #F63D7D;
  border-radius: 40px;
}

.time-display {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  font-family: "Montserrat Alternates", sans-serif;
  transition: 1s;
}

.dropbtn {
    background: transparent;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
} 
  
.dropdown {
    position: absolute;
    top: 10px;  
    right: 30px; 
  } 
  
  .dropdown-content {
    display: none;       
    flex-direction: column; 
    background-color: #F2F2F2;
    min-width: 600px;
  }

  .song-item div {
      display: flex;
      margin-bottom: 15px;
      padding-right: 10px;
  }
  
  .dropdown-content p {
    color: black;
    text-decoration: none;
    display: flex; 
    flex-direction: column; 
    padding-left: 15px;
    font-family: "Montserrat Alternates", sans-serif;
    font-size: 25px;
    cursor: pointer;
  }

  .song-info p:nth-child(2) {
    font-size: 22px;
    opacity: 80%;
}

  .song-img img {
    height: 95px;
    width: 95px;
    border-radius: 20px;
    margin-left: 20px;
    cursor: pointer;
  }

  .song-info {
    display: flex;
    flex-direction: column; 
    justify-content: center;
  }

  .dropdown h3 {
    font-family: "Monoton", sans-serif;
    display: flex;
    justify-content: center;
    padding-top: 20px;
    font-size: 48px;
  }
  
  .dropdown-content a:hover {
    background-color: #f1f1f1
  }
  
  .dropdown:hover .dropbtn {
    background-color: #F63D7D;
  }

  .dropdown:hover .dropdown-content {
    display: block; 
  }

