body{
    background-color: #f0f8ff;
}

*{
    margin: 0;
    padding: 0;
}

nav{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

nav ul{
    display: flex;
    align-items: center;
    list-style-type: none;
    background-color: black;
    height: 60px;
    color: white;
}

nav ul li{
    padding: 0 10px;
}

.logo img{
    width: 55px;
    padding: 0 8px;
    border-radius: 50%;
}

.logo{
    display: flex;
    align-items: center;
    font-weight: bolder;
    font-size: 1.25rem;
}

.container{
    justify-content: right;
    min-height: 64vh;
    background-color: black;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    display: flex;
    margin: 20px auto;
    width: 70%;
    border-radius: 15px;
    padding: 30px;
    background-image: url(img/bg.avif);
    background-position: center;
    background-size: cover;
}

.bottom{
    position: sticky;
    height: 122px;
    background-color: black;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    flex-direction: column;
}

.icons{
    margin-top: 15px;
}

.icons img{
    height: 40px;
    width: 40px;
    cursor: pointer;
}

#MyProgressBar{
    width: 80vw;
    text-align: center;
    cursor: pointer;
}

.MasterPause{
    display: none;
}
.MasterPlay{
    display: none;
}
.songitemcontainer{
    margin-top: 28px;

}
.SongItem{
    height: 40px;
    display: flex;
    background-color: white;
    color: black;
    margin: 12px 0;
    justify-content: space-between;
    align-items: center;
    border-radius: 25px;
    cursor: pointer;
}
.SongItem span{
margin: auto;
}
.SongItem img{
    width: 30px;
    margin: 0 10px;
    border-radius: 25px;
}
.SongName{
    width: 200px;
}
.SongInfo{
    position: absolute;
    left: 10vw;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.SongInfo img{
    opacity: 0;
    transition: opacity 0.4s ease-in;
}
