* {
    margin: 0;
    padding: 0;
    font-family: Roboto;
}

body {
    overflow-x: hidden;
    background-color: black;
    color: white;
}

.title {
    font-family: "Font Awesome 6 Brands";
    font-size: 16px;
}

.left {
    width: 25vw;
    color: white;
    position: relative;
    z-index: 1;
}

.closemenu .closing-btn {
    display: none;
    position: absolute;
    top: 15px;
    right: 18px;
    cursor: pointer;
    font-size: 25px;
}

.librabry {
    position: relative;
    min-height: 70vh;
    overflow-x: hidden;
    overflow-y: auto;
}

.home ul {
    list-style: none;
}

.home ul li :first-child {
    font-size: 20px;
}

.home ul li {
    gap: 10px;
    margin: 7px;
    padding: 1px 2px 1px 2px;
    font-weight: bold;
    cursor: pointer;
}

.heading {
    display: flex;
    width: 90%;
    gap: 10px;
    margin: 5px;
    color: rgba(214, 211, 211, 0.93);
    align-items: center;
}

.heading img {
    width: 25px;
}

.songList {
    padding: 0 8px;
    margin: 30px 0px 60px;
    height: 60vh;
    overflow: hidden auto;
    scrollbar-width: none;
}

.songList ul li {
    list-style-type: decimal;
    display: flex;
    border: 2px solid rgba(148, 146, 146, 0.921);
    gap: 5px;
    justify-content: space-between;
    padding: 6px 6px;
    align-items: center;
    margin: 8px 0px;
    border-radius: 8px;
    width: 250px;
    font-size: 10px;
    cursor: pointer;
}

.songList .songs-info {
    font-size: 13px;
    width: 160px;
}

.play_now {
    display: flex;
    flex-wrap: nowrap;
    gap: 3px;
    cursor: pointer;
}

.footer {
    position: absolute;
    bottom: 5px;
}

.footer .inner-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 10px;
    padding: 11px 2px;
    margin: 10px 4px 4px 10px;
    color: gray;
}

.inner-footer a {
    text-decoration: none;
    color: gray;
}

.right {
    width: 75vw;
    position: relative;
    margin: 7px;
}

.header {
    background-color: rgb(47, 47, 47);
    padding: 4px 0px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 30px;
}

.nav .firstMenu {
    display: none;
    font-size: 25px;
    cursor: pointer;
}

.nav .angular-icons {
    gap: 15px;
    display: flex;
}

.sign-bnt {
    background-color: rgb(47, 47, 47);
    color: rgba(210, 208, 208, 0.888);
    font-size: 16px;
}

.login-btn {
    font-size: 16px;
}

.sign-bnt:hover {
    color: white;
    font-size: 17px;
}

.login-btn:hover {
    padding: 6px 15px;
    font-size: 17px;
    background-color: #dfdede;
}

.buttons {
    gap: 15px;
    display: flex;
}

.buttons button {
    padding: 3px 5px;
}

.album-container {
    padding: 10px;
}

.card {
    width: 145px;
    height: 220px;
    padding: 10px;
    position: relative;
    background-color: rgb(36 36 36);
}

.card-container {
    display: flex;
    margin: 2px 5px;
    flex-wrap: wrap;
    gap: 10px;
}

.card:hover {
    background-color: rgb(47, 47, 47);
}

.textHed:hover {
    text-decoration: underline;
}
.textHeading:hover {
    text-decoration: underline;
}
.textPara:hover {
    text-decoration: underline;
}

.card img {
    width: 100%;
    object-fit: contain;
    border-radius: 5px;
}

.play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: green;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    font-size: 24px;
    position: absolute;
    right: 16px;
    top: 125px;
    /* top: 220px; */
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

.card:hover .play {
    opacity: 1;
    /* top: 200px; */
    top: 112px;
   
}

.playbar {
    position: fixed;
    bottom: 12px;
    filter: invert(1);
    background-color: rgb(205, 205, 205);
    width: 72vw;
    min-height: 40px;
    padding: 15px 5px;
    border-radius: 12px;
}

.playbar a i {
    color: rgb(49, 48, 48);
    font-size: 32px;
}

.playbar-btn {
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
    width: 160px;
}

.playbar-btn a {
    font-size: 28px;
    color: white;
}

.seekbar {
    background-color: black;
    height: 4px;
    width: 99%;
    position: absolute;
    bottom: 3px;
    border-radius: 9px;
    margin: 6px 0px;
    cursor: pointer;
}

.circle {
    position: relative;
    bottom: 6px;
    height: 15px;
    width: 15px;
    background-color: black;
    border-radius: 20px;
    left: 0%;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.above-bar {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    padding: 0 10px;
}

.song-info,
.song-time {
    color: black;
    width: 160px;
}

.song-time {
    display: flex;

}

.time-vol {
    align-items: center;
    justify-content: space-evenly;
}

.volume a i {
    font-size: 20px;
}

.volume .vol-seekbar {
    width: 90px;
    cursor: pointer;
}


@media screen and (max-width:600px) {
    .left {

        position: absolute;
        left: -100%;
        transition: all 0.8s ease-in-out;
        width: 200px;
    }

    .right {
        width: 100vw;
        margin: 0;
    }

    .playbar {
        display: flex;
        flex-direction: column;
        width: 96vw;
        padding: 5px 8px;
        bottom: 3px;
    }

    .nav .firstMenu {
        display: block;
    }

    .songList ul li {
        width: 160px;
        font-size: 8px;
    }

    .songList .songs-info {
        font-size: 10px;
    }

    .songList ul li img {
        width: 21px;
    }

    .closemenu .closing-btn {
        display: block;
    }

    .song-info,
    .song-time {
        font-size: 10px;
        display: flex;
        justify-content: center;
        padding-bottom: 5px;
    }

    .song-time {
        padding: 3px 0;
    }

    .playbar a i {
        font-size: 20px;
    }

    .volume a i {
        font-size: 15px;
        padding-bottom: 9px;
    }

    .inner-footer div a span {
        font-size: 8px;
    }

    .footer .inner-footer {
        height: 35px;
    }

    .play_now {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 10px;
        gap: 5px;
    }

    .play_now i {
        font-size: 15px;
    }

    .btn {
        font-size: 10px;
        width: 58px;
        height: 29px;
    }

    .btn:hover {
        font-size: 12px;
        width: 70px;
    }

    .buttons {
        gap: 0px;
    }

    .textHeading {
        font-size: 20px;
        margin: 10px 24px;
    }

    .textHed {
        font-size: 22px;
    }

    .textPara {
        font-size: 13px;
    }

    .card-container {
        justify-content: center;
    }

    .card {
        width: 45%;
        padding: 10px;
        height: auto;
    }

    .card img {
        width: 100%;
        height: auto;
    }

    .above-bar {
        flex-direction: column;
        justify-items: center;
        align-items: center;
        gap: 1px;
    }

    .playbar-btn {
        width: 80px;
        height: 25px;
    }

    .volume {
        display: flex;
        justify-content: center;

    }
    .volume .vol-seekbar {
        height: 5px;
        margin-top:7px ;
    }

}
@media screen and (max-width:430px) {
    .card {
        width: 95%;
        
    }
}