* {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CIRCLE BG COLOR   */
/* CIRCLE::BEFORE BG COLOR */


.box {
    width: 400px;
    height: 500px;
    background: linear-gradient(#36107d, #110430);
    border-radius: 10px;
    padding: 15px 10px;
    box-shadow: 0px 0px 20px rgba(6, 5, 102, 0.2);
}

.heart {
    color: white;
    width: 100%;
    text-align: right;
    margin-left: -10px;
    margin-top: 10px;
    display: block;
    font-size: 40px;
}

.player {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-direction: column;
}

.circle {
    width: 300px;
    margin-top: -70px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(#39168C, #6E0961);
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle::before {
    content: "\f001";
    font-family: "fontawesome";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    border-radius: 50%;
    height: 90%;
    z-index: 10;
    background: linear-gradient(#240460, #110430);
    color: white;
    font-size: 55px;
}
input{
    margin-top: 30px;
    width: 80%;
    accent-color: #731191;
    cursor: pointer;
}
.controls{
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    color: white;
    font-size: 40px;
    margin-top: 20px;
}
.controls i{
    cursor: pointer;
}
.prev{
    rotate: 180deg;
}
.play-pause{
    rotate: 90deg;
}

.rotate-circle{
    animation: rotate 5s linear infinite;
}
@keyframes rotate {
    0%{
        rotate: 0;
    }100%{
        rotate: 360deg;
    }
}

@media screen and (max-width: 440px){
    .box{
        width: 90%;
    }
    .circle{
        width: 200px;
        height: 200px;
    }
}