@font-face {
    font-family: "CircularSP-bold";
    src: url('font/CircularSpotifyText-Bold.otf');
}

@font-face {
    font-family: "CircularSP-normal";
    src: url('font/CircularSpotifyText-Medium.otf');
}

*, html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #0f0f0f;
    /* border: 1px solid white; */
    padding: 8px;
}

.container .containt-container {
    width: 100%;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 1px solid white; */
}

.container .side-bar {
    width: 23%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* border: 1px solid white; */
    margin-right: 8px;
}

.container .side-bar .sidebar-top {
    width: 100%;
    height: 16%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 1px solid white; */
    background-color: #1f1f1f;
    margin-bottom: 8px;
    border-radius: 8px;
}

.container .side-bar .sidebar-top .brand {
    width: 90%;
    display: flex;
    justify-content: start;
    align-items: center;
    /* border: 1px solid white; */
    margin-left: 5%;
}

.container .side-bar .sidebar-top .brand .brand-img {
    width: 8%;
}

.container .side-bar .sidebar-top .brand span {
    margin-left: 10px;
    font-family: "CircularSP";
    color: white;
}

.container .side-bar .sidebar-top .navbar {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style-type: none;
}

.container .side-bar .sidebar-top .navbar li {
    display: flex;
    justify-content: start;
    align-items: center;
    /* border: 1px solid white; */
    width: 90%;
    margin: 2%;
}

.container .side-bar .sidebar-top .navbar li lord-icon {
    width: 28px;
}

.container .side-bar .sidebar-top .navbar li span {
    color: rgba(255, 255, 255, 0.6);
    font-family: "CircularSP-normal";
    /* border: 1px solid white; */
    margin-left: 20px;
    padding-top: 2%;
}


.container .side-bar .sidebar-bottom {
    width: 100%;
    height: 84%;
    /* border: 1px solid white; */
    background-color: #1f1f1f;
    border-radius: 8px;

}


.container .content {
    width: 76%;
    height: 100%;
    /* border: 1px solid white; */
    background-color: #1f1f1f;
    border-radius: 8px;

}

.container .play-music {
    width: 100%;
    height: 10vh;
    /* border: 1px solid white; */
}