* {
    
    box-sizing:border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #1d1d1e;
    color:white;
    padding: 0px;
    margin: 0px;
    
}
.container {
 height:90vh;
 border-radius:20px;

}
.wrapper {
    margin-left:30px;
    margin-top:30px;
    margin-right:30px;
}
.header {
    display: flex;
    justify-content: space-between;
}
.wrapper h1{
    font-size:45px;
}

.header h2{
    font-size:30px;
    font-weight: 300;
    margin-top: -10px;
}

.slideimage {
    display:grid;
    grid-auto-flow: column;
    
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    margin-left: -30px;
    margin-right: -30px;
    gap:20px;
    padding: 0 1rem 1rem;
    
}

.slideimage::-webkit-scrollbar {
    width:1px;
}

.slideimage::-webkit-scrollbar-thumb {
    background-color:#1d1d1e;
    border-radius:6px;
    
}

.images img{
    border-radius:30px;
    width:250px;
    
}

.images > h5 {
    margin-left: 20px;
    margin-top:-20px;
}
.images > h3 {
    margin-left: 20px;
    font-weight: 300;
}

.listing {
    overflow-y: auto;
    width:350px;
    height:230px;

}

.listing::-webkit-scrollbar-thumb {
    background-color:#1d1d1e;
    border-radius:6px;
    
}

.listing::-webkit-scrollbar {
    width:1px;
}

.music-list {
    display: flex;
    align-content: center;
    justify-content: space-evenly;
    align-items: center
    
}

.music-image > img {
    width:80%;
    border-radius: 50%;
}

.song-artist {
    margin-right:40px;
}
.song-artist > h4 {
    margin-top:-20px;
    font-weight: 300;
    width:200px;
}

.song-music > h4 {
    width:120px;
}

.trans {
    width: 100%;
    height: 100%;
    position: fixed;
    align-items: center;
    justify-content: center;
    background-color: rgba(20, 20, 20, 1);
    top: 0;
    z-index: 1000;
}

.player {
    cursor: pointer;
}

.musiccontainer {
    position: relative;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: popup;
    animation-duration: 1s;
}

.cancel {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.hidden {
    display:none;
}

.details {
    display:flex;
    flex-direction: column;
    align-items: center;
    margin-top:30px;
}

.trackArt{
    margin: 25px;
    height: 250px;
    width: 250px;
    border:2px solid 	#FFFAFA;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    -moz-box-shadow: 0px 6px 5px black;
    -webkit-box-shadow: 0px 6px 5px black;
    box-shadow: 0px 6px 5px black;
    -moz-border-radius:190px;
    -webkit-border-radius:190px;
    
}

.trackName{
    font-size:40px;

}

.trackArtist {
    font-size:30px;
}

.slider_timer {
    display:flex;
    justify-content: space-evenly;
    align-items: center;
}



.seek_slider {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 5px;
    background: #ffc83d;
    -webkit-transition: .2s;
    transition: opacity .2s;
    }

    .seek_slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: white;
    border: 3px solid #3774FF;
    cursor: grab;
    border-radius: 100%;
    }
    
    .seek_slider:hover {
    opacity: 1.0;
    }
    
    .seek_slider {
    width: 60%;
    }
    

    .buttons {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        margin-top:50px
    }

    .rotate {
        animation: rotation 8s infinite linear;
    }

    @keyframes rotation {

        from{
            transform: rotate(0deg);
        }
        to {
            transform: rotate(360deg);
        }
    }

    .On{
        color:#ffc83d;
    }

   