@import url('https://fonts.googleapis.com/css2?family=Piazzolla:opsz,wght@8..30,200;8..30,300;8..30,400&family=Ubuntu:ital,wght@0,300'); 
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600&family=Piazzolla:opsz,wght@8..30,200;8..30,300;8..30,400&family=Ubuntu:ital,wght@0,300;1,300;1,400&display=swap');
body{
    padding: 0;
    margin: 0;
    margin-top: -17px;
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
    background-color: grey;
}

*{
    box-sizing: border-box;
}


.navbar{
    background-color: black;
    color: white;
    position: sticky;
    top: 0;
}

.navbar > ul {
    display: flex;
    align-items: center;
}

.list > li{
    list-style-type: none;
    padding: 0 23px;
}

.logo{
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 64px;
    border-radius: 50%;
}

.name{
    font-size: 1.3rem;
    font-weight: bolder;
}


.container{
    background-repeat: no-repeat;
    height: 95vh;
    width: 60vw;
    margin: auto;
    background-image: url(../media/containerBgd.jpg);
    background-size: cover;
    border-radius: 13px;
    padding: 33px;
    margin-bottom: 10px;
}


.songItem{
    border: 2px solid white;
    color: white;
    margin: 15px 0;
    /* height: 100%; */
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 55vw;
    padding: 8px 18px;
    border-radius: 40px;
    scroll-behavior: auto;
}

.songName{
    font-family: 'Dancing Script', cursive;
}

.imageIcon{
    width: 40px;
    height: 40px;
    border-radius: 100%;
    border: 2px solid white;
}

.controls{
    width: 24vh;
    margin: auto;
    display: flex;
    justify-content: space-around;
    /* cursor: pointer; */
}

#songRange{
    width: 80%;
    margin: auto;
}

.controls .mediaControllers, #songRange {
    cursor: pointer !important;
}

/* #play{
    color: red;
} */

.bottom{
    width: 100%;
    height: 10vh;
    margin-top: 200px;
    display: flex;
    flex-direction: column;
    background-color: black;
    color: white;
    text-align: center;
    justify-content: center;
    position: fixed;
    bottom:0;
}

@media screen and (max-width: 821px){
    .container{
        width: 70vw;
        background-size: cover;
        border-radius: 13px;
        padding: 13px;
        margin-bottom: 10px;
        margin: auto;
    }

    .songItem{
        width: 70vw;
    }
}

@media screen and (max-width: 600px) {
    .container{
        width: 70vw;
        background-size: cover;
        border-radius: 13px;
        padding: 13px;
        margin-bottom: 10px;
        margin: auto;
    }
    .songContainer{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

}

@media screen and (max-width: 541px) {
    .container{
        width: 70vw;
        background-size: cover;
        border-radius: 13px;
        padding: 13px;
        margin-bottom: 10px;
        margin: auto;
    }
    .songContainer{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .songItem{
        width: 65vw;
    }

}

@media screen and (max-width: 426px) {
    .navbar{
        width: 100%;
    }

    .list > li{
        list-style-type: none;
        padding: 0 3px;
    }

    .navItems{
        margin-left: 15px;
    }

    .logo {
        margin-left: -30px;
    }

    .logo img {
        width: 54px;
        border-radius: 50%;
    }

    .container{
        width: 75vw;
        height: 600px;
        background-size: cover;
        border-radius: 13px;
        padding: 13px;
        margin-bottom: 10px;
        margin: auto;
    }

    .songContainer{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .songItem{
        margin: 10px 0;
        display: flex;
        justify-content: space-around;
        align-items: center;
        width: 70vw;
        padding: 8px 8px;
        border-radius: 40px;
    }

    .imageIcon{
        width: 40px;
        height: 40px;
        border-radius: 100%;
        border: 2px solid white;
    }
}

@media screen and (max-width:415px){
    .container{
        width: 80vw;
        height: 95vh;
        background-size: cover;
        border-radius: 13px;
        padding: 13px;
        margin-bottom: 20px;
        margin: auto;
    }

    .bottom{
        /* margin-top: 200px; */
    }
}

@media screen and (max-width:321px){
    .container{
        width: 80vw;
        height: 88vh;
        background-size: cover;
        border-radius: 13px;
        padding: 10px 23px;
        margin-bottom: 10px;
        margin: auto;
    }

    .songItem{
        margin: 10px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 75vw;
        padding: 8px 8px;
        border-radius: 40px;
    }

    .imageIcon{
        width: 30px;
        height: 30px;
        border-radius: 100%;
        border: 2px solid white;
    }
}