body {
    font-family: "Montserrat", sans-serif;
    margin: 0;

    background-color: black;
    color: #fff;
    overflow: hidden;
}

.main {
    display: flex;
    height: 100vh;
    padding: 0.5rem;
}

.sidebar {
    background-color: black;
    width: 340px;
    border-radius: 1rem;
    padding: 5px;
}

.main-content {
    background-color: #121212;
    flex: 1;
    border-radius: 1rem;
    overflow: auto;
    padding: 0 1.5rem 0 1.5rem;
}

.music-player {
    background-color: black;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 72px;
    /* display: flex;
    justify-content: space-between;
    align-items: center; */
}

a {
    text-decoration: none;
    color: #fff;
}

.nav {
    background-color: #121212;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100px;
    padding: 0.5rem 0.75rem;
    border-radius: 1rem;
}

.nav-option {
    line-height: 2.5rem;
    opacity: 0.5;
    padding: 0.5rem 0.75rem;
}

.nav-option:hover {

    opacity: 1;
}

.nav-option i {
    font-size: 1.2rem;

}

.nav-option a {
    font-size: 1rem;
    margin-left: 1rem;
}

.library {



    margin-top: 1rem;
    border-radius: 1rem;
    height: 100vh;
    background-color: #121212;
    padding: 0.5rem 0.75rem;

}

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lib-option img {
    width: 1.25rem;
    height: 1.25rem;
}

.icons {
    font-size: 1.2rem;

    display: flex;
}

.icons i {
    opacity: 0.7;
    margin-right: 1rem;
}

.icons i:hover {
    opacity: 1;
}

.lib-box {
    border-radius: 1rem;
    background-color: rgb(52, 51, 50);
    height: 150px;
    padding: 0.50rem 0.75rem;
    margin-bottom: 1rem;
}

.btn {
    width: 8rem;
    height: 2rem;
    border-radius: 2rem;
    background-color: aliceblue;
    transition: 0.5s;

}

.btn,
:hover {
    background-color: #fff #fff;
    opacity: 2;

}

.sticky-nav {
    position: sticky;
    top: 0;
    background-color: #121212;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0 1rem;
    z-index: 10;
}

.sticky-nav-icons {
    margin-left: 0.75rem;

}

.sticky-nav-options {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-items {
    margin-right: 1rem;
}

.dark-badge {
    background-color: black;
    color: white;
    border: none;
    transition: 0.4s;
}

.dark-badge:hover {
    background-color: #fff #fff;
    opacity: 2;

}

.white-badge:hover {
    scale: 1.1;
}

@media (max-width: 1000px) {
    .hide {
        display: none;
    }
}

.card-continer {
    display: flex;
    flex-wrap: wrap;
}

.card {
    background-color: #232323;
    width: 150px;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;

}

.card-image img {
    width: 100%;
    border-radius: 0.5rem;
}

.card-title {

    font-weight: 600;
}

.card-info {
    font-size: 0.70rem;
    opacity: 0.5;
}

.footer {
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.line {
    border-top: 1px solid #f1f0f0;
    width: 100%;
    height: 50%;
    opacity: 0.5;
}

.music-card {
    width: 25%;
    display: flex;
    /* padding: 1rem; */

}

.music-card img {
    width: 20%;
    height: 65%;
    padding: 1rem;

}

.music-title {
    font-size: 0.55rem;
    margin-top: 0.75rem;
    margin-right: 1rem;
}

.music-icons {
    margin-top: 1.5rem;
}

.music-icons i {
    margin-right: 0.55rem;
}



.playlist-items {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 5rem;
}

.player-icons {
    height: 1rem;
    /* margin-top: 0.50rem; */
    margin-right: 1.75rem;
    opacity: 0.7;
}

.player-icons:hover {
    opacity: 1;
}

.playback-bar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pro-bar {
    width: 50%;
    appearance: none;
    background-color: transparent;
    cursor: pointer;
}

.music-player {
    display: flex;
}

.playlist {
    width: 50%;
}

.pro-bar::-webkit-slider-runnable-track {
    background-color: #ddd;
    border-radius: 100px;
    height: 0.15rem;
}

.pro-bar::-webkit-slider-thumb {
    appearance: none;
    height: 1rem;
    width: 1rem;
    background-color: #1bd760;
    border-radius: 50%;
    margin-top: -6px;
}

.music-items {
    width: 25%;
}

.music-tools {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.music-tools i {
    margin-left: 1rem;
}