body{
    background-color: black;
}

.view {
    background-color: black;
    display: flex;
}

.main-content {
    height: 100vh;
    background-color: #121212;
    border-radius: 1.5rem;
    color: white;
    width: max-content;
    flex: 1
}

.side-bar {
    height: 100vh;
    width: 400px;
    background-color: black;
    border-radius: 1.5rem;
    color: white;
   
}

.music-player {
    position: fixed;
    background-color: #121212;
    width: 100%;
    bottom: 5%;
    color: #fff;
    border-radius: 1.5rem;
}

.upper {
    height: 112px;
    padding: 0.5rem 0.75rem;
    background-color: #121212;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0.5rem;
}

.upper div {
    padding: 0.25rem 0.75rem;
    margin: 4px 4px;
    font-size: 1.2rem;
    opacity: 0.7;
}

div a {
    color: white;
    text-decoration: none;

    margin-left: 1rem;
}

.upper :hover {
    opacity: 1;
}

.library {
    background-color: #121212;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0.5rem;
}

.first {
    display: flex;
    padding: 0.5rem 0.5rem;
    font-size: 1.2rem;
    justify-content: space-between;
    opacity: 0.7;
}
.option{
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0.5rem;
}
.icons{
    display: flex;
   align-items: baseline;
   margin: 0.5rem 0.5rem;
   padding: 0.5rem;
    justify-content: space-around;
}


.library img {
    height: 1.25rem;
    width: 1.25rem;
    margin-top: 0.25rem;
}

.option  p{
    margin: 0 0.5rem 0 0.5rem;
}
.library .btn{
    border-radius: 5rem;
    width: 5rem;
    height: 1.8rem;
    background-color: rgb(58, 58, 58);
    color: white;
    margin: 0.5rem;
    position: relative;
    left: 0.25rem;
}
.bar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.125rem 0.25rem 0 0.5rem;
    opacity: 0.7;
}
.artist{
    padding: 0 0.5rem 0.rem;
}
.bar i{
    padding: 0.5rem ;
}

.bar div {
    display: flex;
    align-items: center;
}
.list{
    padding: 0 0.5rem;
    display: flex;
    flex-direction: column;
}
.name p{
    margin: 0;
    opacity: 0.7;
}
.name h3{
    margin: 0;
}
.list img{
    height: 3rem;
    width: 3rem;
    border-radius: 3rem;
    margin-right: 1rem;
}
.detail{
    display: flex;
    height: 64px;
    width: 344px;
}
.main-content{
    padding: 0 1rem;
}
.main-content .head{
    display: flex;
    justify-content: space-between;
    height: 4rem;
    align-items: center;
    position: sticky;
}
.main-content .icons i{
    margin:.75rem;

}
.buttons{
    font-size: 1rem;
    margin: 1rem;
}
.buttons i{
    margin-right: 1rem;
}
.Explore{
    background-color: white;
    border-radius: 1rem;
    margin: 1rem;
    height: 2rem;
}
.Install{
    background-color: black;
    color: white;
    border-radius: 1rem;
    margin: 1rem;
    height: 2rem;
}
@media (max-width:1000px) {
    .Explore{
        display: none;
    }
}
.title{
    font-size: 1.4rem;
}
.card{
    background-color: #232323;
    width: 207px;
    height: 288px;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
}
.card img{
    height: 200px;
    width: 170px;
    border-radius: 1rem;
    margin: 1rem;
}
.card-title{
    margin: 0 1rem;
    font-size: 1.2rem;
}
.card-info{
    margin: 0 1rem;
    font-size: 0.8rem;
    opacity: 0.7;
}
.cards{
    display: flex;
    justify-content: space-between;
}
.music-player{
    height: 4.5rem;
    position: fixed;
    bottom: 0;
    background-color: black;
    display: flex;
    
}
.music {
    display: flex;
    align-items: center;
    width: 25%;
    justify-content: space-between;
}
.music img{
    height: 3.5rem;
    width:3.5rem;
    margin: 0.5rem;
}
.music .name{
    margin-left: 1rem;

}
.player{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
}
.btn{
    display: flex;
    justify-content: center;
}
.bar{
    display: flex;
    justify-content: center;
}
.progress{
    width: 70%;
    color: white;
    background-color: black;
}
.progress::-webkit-slider-runnable-track{
    background-color: white;
    border-radius: 1rem;
    height: 3px;
}
.progress::-webkit-slider-thumb{
    appearance: none;
    color: black;
    border-radius: 50%;
    margin: -6px;
}
.player i{
   font-size: 1.5rem;
   margin :1.2rem;
   opacity: 0.7;
}
.player i:hover{
   font-size: 1.6rem;
   opacity:1;
}
.tools{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tools i{
    margin:1rem;
    opacity: 0.7;
}