* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.container {
    width: 100%;
    height: 100vh;
    background: linear-gradient(to right, rgb(31, 238, 158), rgb(33, 243, 239));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}

.musicplayer {
    width: 400px;
    padding: 10px;
    background-color: rgba(98, 57, 244, 0.376);
    text-align: center;
    border-radius: 10px;
    user-select: none;
}

nav {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

nav .circle {
    border-radius: 50%;
    box-shadow: 0px 5px 10px rgb(251, 96, 244);
    cursor: pointer;
    width: 30px;
    height: 30px;
    background: #fff;
    align-items: center;
    line-height: 30px;
    color: rgb(251, 96, 244);
}

img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid rgb(251, 96, 244);
    box-shadow: 0 1px 30px rgb(251, 96, 244);
    margin-bottom: 10px;
}

h3 {
    text-shadow: 1px 0 5px black;
    color:rgba(251, 138, 250, 0.985);
    font-size: 25px;
}

h5{
    text-shadow: 1px 0 3px rgb(1, 7, 9);
    margin-top: 15px;
    color: rgb(249, 234, 215);
}

#range {
    -webkit-appearance: none;
    width: 70%;
    height: 5px;
    border-radius: 30px;
    background-color: rgb(251, 96, 244);
    cursor: pointer;
    margin: 20px;
}

#range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background-color: rgb(251, 96, 244);
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 5px 10px rgb(251, 96, 244);
}

#controls {
    display: flex;
    align-items: center;
    justify-content: center;
}


#controls div {
    background-color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 20px;
    line-height: 30px;
    cursor: pointer;
    margin: 30px;
    margin-top: 15px;
    color: rgb(251, 96, 244);
    box-shadow: 0 1px 10px rgb(251, 96, 244);
}

#controls div:hover {
    transform: scale(1.3);

}

#controls div:nth-child(2) {
    transform: scale(2);
    color: #fff;
    background-color: rgb(251, 96, 244);
}

#controls div:nth-child(2):hover {

    background-color: #ee139d;
    transform: scale(2.5);
}


.album-art {
  width: 200px;
  height: 200px;
  animation: spin 10s linear infinite;
    margin:20px auto; 
}

.album-art img {
  width: 100%;
  height: 100%;
}

@keyframes spin {
  0%   { transform: rotate(0deg); }
  50% { transform: rotate(60deg); }

}