@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap');
*{
    margin: 0;
    padding:0;
    box-sizing: border-box;
    font-family: "poppins" sans-serif;
}

*::before, *::after{
    padding: 0;
    margin: 0;
}

.blue-box {
    background: rgba(0, 0, 0, 5.1);
    color: #fff; 
    text-align: center;
    padding: 9px;
    position: relative;
    z-index: 1;
    margin-top: 68px;
}

.blue-box h1 {
    color: white;
    font-size: 2em;
    margin: 0
}

.blue-box p {
    font-size: 1em;
    color: white;
}



section{
    position: relative;
    background: black;
    min-height: 115vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;

}
.circle{
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(#ffc107, #e91e63);
    border-radius: 50%;
    transform: translate(-250px, -120px);
}
.circle::after{
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: linear-gradient(#2196f3, #31ff38);
    border-radius: 50%;
    transform: translate(250px, 120px);
    margin-left: 296px;
    margin-top: 115px;
}
.box{
    position: relative;
    min-width: 350px;
    min-height: 400px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    z-index: 10;
    padding: 20px;
    backdrop-filter: blur(25px);
    right: 44px;
    bottom: 19px;
}

.box h3{
    color: #fff;
    margin-bottom: 20px;
}
.box .list{
    position: relative;
    display: flex;
    padding: 10px ;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 10px 0;
    cursor: pointer;
    transition: 0.5s;
    overflow: hidden;
}
.box .list:hover{
    background: white;
    box-shadow: -15px 30px 50px rgba(0, 0, 0, 0.5);
    transform: scale(1.15) translateX(30px) translateY(-15px);
    z-index: 1000;

}
.box .list .imgBx{
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 10px;

}

.box .list .imgBx img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

}
.box .list .content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}
.box .list .content .rank{
    position: absolute;
    right: -55px;
    color: #333;
    transition: 0.5s;
    font-size: 2.5em;
}
.box .list .content .rank small{
    font-weight: 500;
    opacity: 0.25;

}
.box .list:hover .content .rank{
    right: 20px;
}
.box .list .content h4{
    line-height: 1.2em;
    font-weight: 600;
    transition: 0.5s;
}
.box .list .content p{
    font-size: 0.75em;
    transition: 0.5s;
}
.box .list:hover .content h4,
.box .list:hover .content p{
    color: #333;
}

.artist-list {
    position: relative;
    min-width: 535px;
    min-height: 156px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    z-index: 10;
    padding: 20px;
    backdrop-filter: blur(25px);
    top: -70px;
    left: -8px;
}

.artist-list ul {
    list-style: none;
    padding: 0;
}

.artist-list li {
    margin-bottom: 10px;
}

.artist-list a {
    position: relative;
    display: flex;
    padding: 10px ;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 10px 0;
    cursor: pointer;
    transition: 0.5s;
    overflow: hidden;
}

.artist-list a:hover {
    background-color: #007ACC;
    color: #fff;
}
#show-more {
    display: block;
    background-color: #007ACC;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    margin-top: 10px;
    cursor: pointer;
    box-shadow: none; /* Add this line to remove the box shadow */
}

#show-more:hover {
    background-color: #005F99;
}

a {
    text-decoration: none; /* Remove underline from the anchor tag */
    font-weight: bold;
    color:white ;
}

button {
    text-decoration: none; /* Remove underline from the button */
}
.artist-list h3{
    color: #fff;
}

.music-player{
    position: relative;
    min-width: 283px;
    min-height: auto;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    z-index: 10;
    padding: 20px;
    backdrop-filter: blur(25px);
    right: -24px;
    bottom: -23px;
}
.music-player h3{
    color:white
}

.music-player .imgBx{
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 10px;

}

.music-player .imgBx img{
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 10px;
}

.music-player .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    overflow: hidden; /* Add this line to hide overflowed text */
    white-space: nowrap; /* Add this line to prevent text wrapping */
}

.music-player .list h4 {
    display: inline-block;
    max-width: 80%; /* Adjust the width as needed */
    padding-right: 100%;
    font-size: medium;
}

.music-player  .content h4{
    line-height: 1.2em;
    font-weight: 600;
    transition: 0.5s;
}
.music-player  .content p{
    font-size: 0.75em;
    transition: 0.5s;
}.music-player  .list{
    position: relative;
    display: flex;
    padding: 15px ;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 10px 0;
    cursor: pointer;
    transition: 0.5s;
    overflow: hidden;
}

.music-player  .list .imgBx{
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 10px;

}

.music-player  .list .imgBx img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

}
.music-player  .list .content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}


.music-player  .list:hover .content h4,
.music-player  .list:hover .content p{
    color: #333;
}
.controls{
    display:flex;
    justify-content: center;
    align-items: center;
}
.controls div {
    width: 60px;
    height: 60px;
    margin-left: 146px;
    margin-top: -36px;
    background: rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: WHITE;
    cursor: pointer;
    transition: 0.5s;
    z-index: 1;
}
.controls div:hover{
    color: grey;
    transition: 0.5s;
}

.circle2 {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: linear-gradient(#41e5,#516395);
    border-radius: 50%;
    transform: translate(93px, 217px);
    margin-left: -323px;
}



/* Your other styles for this section */



@media (max-width: 820px) and (orientation: portrait){
    .circle2 {
        content: '';
        position: absolute;
        width: 350px;
        height: 350px;
        background: linear-gradient(#41e5,#516395);
        border-radius: 50%;
        transform: translate(83px, 81px);
        margin-left: -323px;
    }
    .blue-box {
        background: rgba(0, 0, 0, 5.1);
        color: #fff;
        text-align: center;
        padding: 9px;
        position: relative;
        z-index: 1;
        margin-top: 67px;
    }
    section {
        position: relative;
        background: black;
        min-height: 163vh;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    section {
        position: relative;
        background: black;
        min-height: 163vh;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .box {
        position: relative;
        min-width: 350px;
        min-height: 506px;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(0, 0, 0, 0.5);
        border-right: 1px solid rgba(0, 0, 0, 0.2);
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        z-index: 10;
        padding: 20px;
        backdrop-filter: blur(25px);
        right: -239px;
        bottom: 672px;
    }
    .artist-list {
        position: relative;
        min-width: 535px;
        min-height: 156px;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(0, 0, 0, 0.5);
        border-right: 1px solid rgba(0, 0, 0, 0.2);
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        z-index: 10;
        padding: 20px;
        backdrop-filter: blur(25px);
        top: -78px;
        left: -8px;
    }
    .music-player {
        position: relative;
        min-width: 347px;
        min-height: auto;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(0, 0, 0, 0.5);
        border-right: 1px solid rgba(0, 0, 0, 0.2);
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        z-index: 10;
        padding: 20px;
        backdrop-filter: blur(25px);
        right: 267px;
        bottom: 631px;
    }
    
.circle {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(#ffc107, #e91e63);
    border-radius: 50%;
    transform: translate(-250px, -585px);
}
    

}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait){
    .artist-list {
        position: relative;
        min-width: 535px;
        min-height: 156px;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(0, 0, 0, 0.5);
        border-right: 1px solid rgba(0, 0, 0, 0.2);
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        z-index: 10;
        padding: 20px;
        backdrop-filter: blur(25px);
        top: 89px;
        left: -8px;
    }
    .box {
        position: relative;
        min-width: 350px;
        min-height: 506px;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(0, 0, 0, 0.5);
        border-right: 1px solid rgba(0, 0, 0, 0.2);
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        z-index: 10;
        padding: 20px;
        backdrop-filter: blur(25px);
        right: -239px;
        bottom: 436px;
    }
    .music-player {
        position: relative;
        min-width: 347px;
        min-height: auto;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(0, 0, 0, 0.5);
        border-right: 1px solid rgba(0, 0, 0, 0.2);
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        z-index: 10;
        padding: 20px;
        backdrop-filter: blur(25px);
        right: 242px;
        bottom: 463px;
    }
    section {
        position: relative;
        background: black;
        min-height: 152vh;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }

}
@media (max-width: 1180px) and (min-width: 820px) and (orientation: landscape){
    .circle2 {
        content: '';
        position: absolute;
        width: 350px;
        height: 350px;
        background: linear-gradient(#41e5,#516395);
        border-radius: 50%;
        transform: translate(83px, 81px);
        margin-left: -323px;
    }
    .blue-box {
        background: rgba(0, 0, 0, 5.1);
        color: #fff;
        text-align: center;
        padding: 9px;
        position: relative;
        z-index: 1;
        margin-top: 67px;
    }
    section {
        position: relative;
        background: black;
        min-height: 163vh;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    section {
        position: relative;
        background: black;
        min-height: 163vh;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .box {
        position: relative;
        min-width: 350px;
        min-height: 506px;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(0, 0, 0, 0.5);
        border-right: 1px solid rgba(0, 0, 0, 0.2);
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        z-index: 10;
        padding: 20px;
        backdrop-filter: blur(25px);
        right: -239px;
        bottom: 363px;
    }
    .artist-list {
        position: relative;
        min-width: 535px;
        min-height: 156px;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(0, 0, 0, 0.5);
        border-right: 1px solid rgba(0, 0, 0, 0.2);
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        z-index: 10;
        padding: 20px;
        backdrop-filter: blur(25px);
        top: 179px;
        left: -8px;
    }
    .music-player {
        position: relative;
        min-width: 347px;
        min-height: auto;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(0, 0, 0, 0.5);
        border-right: 1px solid rgba(0, 0, 0, 0.2);
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        z-index: 10;
        padding: 20px;
        backdrop-filter: blur(25px);
        right: 267px;
        bottom: 340px;
    }
    
.circle {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(#ffc107, #e91e63);
    border-radius: 50%;
    transform: translate(-250px, -585px);
}

}
@media (max-width: 1024px) and (orientation: landscape){
    .circle2 {
        content: '';
        position: absolute;
        width: 350px;
        height: 350px;
        background: linear-gradient(#41e5,#516395);
        border-radius: 50%;
        transform: translate(83px, 81px);
        margin-left: -323px;
    }
    .blue-box {
        background: rgba(0, 0, 0, 5.1);
        color: #fff;
        text-align: center;
        padding: 9px;
        position: relative;
        z-index: 1;
        margin-top: 67px;
    }
    section {
        position: relative;
        background: black;
        min-height: 163vh;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    section {
        position: relative;
        background: black;
        min-height: 163vh;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .box {
        position: relative;
        min-width: 350px;
        min-height: 506px;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(0, 0, 0, 0.5);
        border-right: 1px solid rgba(0, 0, 0, 0.2);
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        z-index: 10;
        padding: 20px;
        backdrop-filter: blur(25px);
        right: -239px;
        bottom: 331px;
    }
    .artist-list {
        position: relative;
        min-width: 535px;
        min-height: 156px;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(0, 0, 0, 0.5);
        border-right: 1px solid rgba(0, 0, 0, 0.2);
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        z-index: 10;
        padding: 20px;
        backdrop-filter: blur(25px);
        top: 228px;
        left: -8px;
    }
    .music-player {
        position: relative;
        min-width: 347px;
        min-height: auto;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(0, 0, 0, 0.5);
        border-right: 1px solid rgba(0, 0, 0, 0.2);
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        z-index: 10;
        padding: 20px;
        backdrop-filter: blur(25px);
        right: 267px;
        bottom: 302px;
    }
    
.circle {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(#ffc107, #e91e63);
    border-radius: 50%;
    transform: translate(-250px, -585px);
}
    

}
 @media (min-width: 481px) and (max-width: 767px){
    .blue-box {
        
        color: #fff;
        text-align: center;
        position: relative;
        z-index: 1;
        margin-top: 68px;
    }

    .blue-box h1 {
        color: white;
        font-size: 2em;
        margin: 0;
    }

    .blue-box p {
        font-size: 1em;
        color: white;
    }
    .box {
        position: relative;
        min-width: 323px;
        min-height: 400px;
        margin: 20px;
        right: -297px;
        bottom: 567px;
        z-index: 100;
    }
    
    .artist-list {
        position: relative;
        min-width: 286px;
        min-height: 165px;
        padding: 20px;
        top: -24px;
        left: 26px;
        z-index: 100;
    }
    section {
        position: relative;
        min-height: 210vh;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .music-player{
        position: relative;
        min-width: 333px;
        min-height: 452px;
        padding: 20px;
        top: 550px;
        left: -341px;
        z-index: 100;

    }
    .circle2{
        content: '';
        position: absolute;
        width: 350px;
        height: 350px;
        background: linear-gradient(#41e5,#516395);
        border-radius: 50%;
        transform: translate(228px, 746px);
        margin-left: -323px;
    }
    .circle3{
        content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: linear-gradient(#fe9030, #ff61d2);
    border-radius: 50%;
    transform: translate(381px, -754px);
    margin-left: -323px;
    }

    .controls div {
    width: 60px;
    height: 60px;
    margin-left: 146px;
    margin-top: -31px;
    background: rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: 0.5s;
    z-index: 1;
}.music-player .list {
    position: relative;
    display: flex;
    padding: 10px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 12px 0;
    cursor: pointer;
    transition: 0.5s;
    overflow: hidden;
}

 }
 @media (min-width: 390px) and (max-width: 500px){
    .blue-box {
        
        color: #fff;
        text-align: center;
        position: relative;
        z-index: 1;
        margin-top: 66px;
    }

    .blue-box h1 {
        color: white;
        font-size: 2em;
        margin: 0;
    }

    .blue-box p {
        font-size: smaller;
        font-weight: 600;
    }
    
    .box {
        position: relative;
        min-width: 323px;
        min-height: 400px;
        margin: 20px;
        right: -297px;
        bottom: 500px;
        z-index: 100;
        margin-top: -41%;
    }
    
    .artist-list {
        position: relative;
        min-width: 286px;
        min-height: 165px;
        padding: 20px;
        top: -35px;
        left: 26px;
        z-index: 100;
    }
    section {
        position: relative;
        min-height: 225vh;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .music-player {
        position: relative;
        min-width: 333px;
        min-height: 452px;
        padding: 20px;
        top: 528px;
        left: -341px;
        z-index: 100;
    }
    .circle2 {
        content: '';
        position: absolute;
        width: 350px;
        height: 350px;
        background: linear-gradient(#41e5,#516395);
        border-radius: 50%;
        transform: translate(-15px, 274px);
        margin-left: -323px;
    }
    .circle3{
        content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: linear-gradient(#fe9030, #ff61d2);
    border-radius: 50%;
    transform: translate(381px, -754px);
    margin-left: -323px;
    }

    .controls div {
    width: 60px;
    height: 60px;
    margin-left: 146px;
    margin-top: -31px;
    background: rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: 0.5s;
    z-index: 1;
}.music-player .list {
    position: relative;
    display: flex;
    padding: 10px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 12px 0;
    cursor: pointer;
    transition: 0.5s;
    overflow: hidden;
}
.circle {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(#ffc107, #e91e63);
    border-radius: 50%;
    transform: translate(-250px, -470px);
}


 }
 @media (min-width: 391px) and (max-width: 480px){
    .blue-box {
        
        color: #fff;
        text-align: center;
        position: relative;
        z-index: 1;
        margin-top: 66px;
    }

    .blue-box h1 {
        color: white;
        font-size: 2em;
        margin: 0;
    }

    .blue-box p {
        font-size: smaller;
        font-weight: 600;
    }
    
    .box {
        position: relative;
        min-width: 323px;
        min-height: 400px;
        margin: 20px;
        right: -297px;
        bottom: 500px;
        z-index: 100;
        margin-top: -41%;
    }
    
    .artist-list {
        position: relative;
        min-width: 305px;
        min-height: 165px;
        padding: 20px;
        top: -35px;
        left: -32px;
        z-index: 100;
    }
    section {
        position: relative;
        min-height: 225vh;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .music-player {
        position: relative;
        min-width: 333px;
        min-height: 452px;
        padding: 20px;
        top: 528px;
        left: -341px;
        z-index: 100;
    }
    .circle2 {
        content: '';
        position: absolute;
        width: 350px;
        height: 350px;
        background: linear-gradient(#41e5,#516395);
        border-radius: 50%;
        transform: translate(-15px, 274px);
        margin-left: -323px;
    }
    .circle3{
        content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: linear-gradient(#fe9030, #ff61d2);
    border-radius: 50%;
    transform: translate(381px, -754px);
    margin-left: -323px;
    }

    .controls div {
    width: 60px;
    height: 60px;
    margin-left: 146px;
    margin-top: -31px;
    background: rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: WHITE;
    cursor: pointer;
    transition: 0.5s;
    z-index: 1;
}.music-player .list {
    position: relative;
    display: flex;
    padding: 10px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 12px 0;
    cursor: pointer;
    transition: 0.5s;
    overflow: hidden;
}
.circle {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(#ffc107, #e91e63);
    border-radius: 50%;
    transform: translate(-250px, -470px);
}

 }
 
@media (min-width: 430px) and (max-width: 480px){
    .blue-box {
        
        color: #fff;
        text-align: center;
        position: relative;
        z-index: 1;
        margin-top: 68px;
    }

    .blue-box h1 {
        color: white;
        font-size: 2em;
        margin: 0;
    }

    .blue-box p {
        font-size: 1em;
        color: white;
    }
    .box {
        position: relative;
        min-width: 323px;
        min-height: 400px;
        margin: 20px;
        right: -297px;
        bottom: 567px;
        z-index: 100;
        margin-top: -296px;
    }
    .artist-list {
        position: relative;
        min-width: 286px;
        min-height: 165px;
        padding: 20px;
        top: -212px;
        left: 33px;
        z-index: 100;
    }
    section {
        position: relative;
        min-height: 222vh;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .music-player {
    position: relative;
    min-width: 342px;
    min-height: 448px;
    padding: 20px;
    top: 364px;
    left: -337px;
    z-index: 100;
}
    .circle2{
        content: '';
        position: absolute;
        width: 350px;
        height: 350px;
        background: linear-gradient(#41e5,#516395);
        border-radius: 50%;
        transform: translate(228px, 746px);
        margin-left: -323px;
    }
    .circle3{
        content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: linear-gradient(#fe9030, #ff61d2);
    border-radius: 50%;
    transform: translate(381px, -754px);
    margin-left: -323px;
    }

    .controls div {
    width: 60px;
    height: 60px;
    margin-left: 146px;
    margin-top: -31px;
    background: rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: WHITE;
    cursor: pointer;
    transition: 0.5s;
    z-index: 1;
}.music-player .list {
    position: relative;
    display: flex;
    padding: 10px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 12px 0;
    cursor: pointer;
    transition: 0.5s;
    overflow: hidden;
}

}
@media (min-width: 300px) and (max-width: 389px){
    .blue-box {

        text-align: center;
        position: relative;
        z-index: 1;
        padding: -59px;
        margin-bottom: -2px;
    }

    .blue-box h1 {
        color: white;
        font-size: x-large;
        margin-bottom: 4px;
    }
    .blue-box p {
        font-size: x-small;
        color: white;
        font-weight: bold;
    }
    .box {
        position: relative;
        min-width: 323px;
        min-height: 270px;
        margin: -44px;
        right: -308px;
        bottom: 796px;
        z-index: 100;
        margin-top: 269px;
    }
    .artist-list {
        position: relative;
        min-width: 313px;
        min-height: 194px;
        padding: 20px;
        top: -219px;
        left: 26px;
        z-index: 100;
        margin-top: 277px;
    }

    section {
    position: relative;
    min-height: 291vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
    
.music-player {
    position: relative;
    min-width: 333px;
    min-height: 452px;
    padding: 20px;
    top: 511px;
    left: -286px;
    z-index: 100;
}
    .circle2{
        content: '';
        position: absolute;
        width: 350px;
        height: 350px;
        background: linear-gradient(#41e5,#516395);
        border-radius: 50%;
        transform: translate(228px, 746px);
        margin-left: -323px;
    }
    .circle3{
        content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: linear-gradient(#fe9030, #ff61d2);
    border-radius: 50%;
    transform: translate(381px, -754px);
    margin-left: -323px;
    }

    .controls div {
    width: 60px;
    height: 60px;
    margin-left: 146px;
    margin-top: -31px;
    background: rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: WHITE;
    cursor: pointer;
    transition: 0.5s;
    z-index: 1;
}.music-player .list {
    position: relative;
    display: flex;
    padding: 10px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 12px 0;
    cursor: pointer;
    transition: 0.5s;
    overflow: hidden;
}

}
