* {
    padding: 0px;
    margin: 0px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 600;
    box-sizing: border-box;
    color: white;
    text-decoration: none;
    list-style: none;
}

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

i {
    position: relative;
}

.gg-home {
    left: 2px;
}

.gg-search {
    left: 6px;
}

.nav {
    background-color: black;
    display: grid;
    grid-template-rows: 1fr 7fr;
    height: 87.5vh;
    padding: 0px 10px 0px 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

#top-nav {
    background-color: rgba(100, 100, 100, 0.2);
    padding: 10px;
    width: 100%;
    border-radius: 10px;
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 7fr;
    margin-bottom: 10px;
    align-items: center;
}

#lib-nav {
    background-color: #64646433;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 1fr 10fr;
    grid-template-rows: repeat(auto, 1fr);
    row-gap: 15px;
    overflow: scroll;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

#lib_title {
    grid-column: 1/span 2;
    height: max-content;
    padding: 20px 0px 0px 10px;
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 7fr;
    position: sticky;
    top: 0px;
    background-color: #141414;
}

.small_album {
    width: auto;
    grid-column: 1/span 2;
    display: flex;
    margin-left: 10px;
}

.small_album_img {
    height: 50px;
    display: inline-block;
    padding-right: 4px;
}

.stuff {
    height: 87.5vh;
    width: 100%;
    background-color: rgba(100, 100, 100, 0.2);
    padding: 20px;
    border-radius: 10px;
    overflow-y: scroll;
    overflow-x: hidden;
    margin-top: 10px;
    margin-bottom: 10px;
}

.stuff::-webkit-scrollbar{
    display: none;
}

#playlist_container{
    margin-top: 20px;
}
#playlist_container::-webkit-scrollbar{
    display: none;
}
#playlist {
    border-radius: 10px;
    padding: 10px;
    background-image: linear-gradient(rgba(100, 100, 100, 0.2), transparent);
    display: grid;
    grid-template-columns:1fr 19fr 1fr;
    font-size:25px;
    grid-template-rows: repeat(auto, 1fr);
    row-gap: 15px;
    overflow: scroll;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

#playlist p{
    padding: 5px;
}

#playlist::-webkit-scrollbar{
    display: none;
}

#album_title {
    display: flex;
    position: sticky;
    top: 0px;
    background-color: #141414;
}

.titile {
    padding-left: 10px;
    align-self: flex-end;
    font-weight: bolder;
    font-size: 30px;
}

#prod {
    font-size: 20px;
}

.prod {
    align-self: flex-end;
}

#album_cover {
    height: 38vh;
}

#album_cover:hover {
    transform: scale(1.02);
    transition-duration: 0.7s;
    transition-timing-function:ease;
}

body {
    display: grid;
    grid-template-columns: 1fr 4fr;
    overflow-y:hidden;
    overflow-x: hidden;
}

#moving {
    height: auto;
    width: 100vw;
    display: grid;
    grid-template-columns: 1fr 3fr;
    background-color: black;
    padding-right: 10px;
}

#bottom_player {
    background-color: black;
    width: 100vw;
    height: 10vh;
    position: fixed;
    bottom: 0px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.current_info {
    width: auto;
}

.current_info_player {
    display: flex;
    justify-content: center;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

#currImage{
    height:8vh;
    border-radius:10px;
    margin-right:10px;
}
#currData{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-evenly;
    height:8vh;
}
.current_info_name{
   display:flex;
   align-items:center;
   height:10vh;
   margin-left:10px;
}

button{
    background-color: #141414;
    border: none;
}
