*{margin: 0; padding: 0; box-sizing: border-box; user-select: none;}
body{
    height: 100vh;
    background: url(img/bg1.gif) center / 100px;
    animation: bg 3s infinite;
    transition: 1s;
}
.playerCont {
    width: 100vw;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.player{
    position: relative;
    width: 500%;
    height: 100%;
    display: flex;
    inset: 0;
    transition: left 1s linear;
    transform-style: preserve-3d;
}
.player .playerBox {
    perspective: 1000px;
    position: relative;
    width: 100%;
    height: 100%;
}
@keyframes bg {
    70% {background-size: 600px;}
}
.playlist {
    position: fixed;
    width: 100vw;
    height: 80px;
    top: -80px;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    transition: .5s;
}
.playlist .menu {
    width: 80px;
    height: 40px;
    position: absolute;
    left: 50%;
    top: 80px;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    cursor: pointer;
}
.playlist .menu div {
    width: 80%;
    height: 5px;
    outline: 1px solid #fff;
    border-radius: 30px;
    background: aqua;
    box-shadow: -2px 0 5px 5px aqua;
    transition: 1s;
}
.playlist ul {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content:space-evenly ;
}
.playlist ul li {
    list-style-type: none;
    padding: 10px;
    font: bold 1.5rem cursive;
    cursor: pointer;
    color: #fff;
    -webkit-text-stroke: .5px aqua;
    transition: .5s;
    text-decoration: underline transparent;
    text-underline-offset: 8px;
}
.playlist ul li:hover{
    transform: scale(1.2);
    text-decoration-color: #fff ;
    color: blue;
    -webkit-text-stroke: 1px #fff;
    font-size: 2rem;
    text-shadow: -10px 0 10px aqua;
}
.active .playlist {
    top: 0;
}
.active .playlist .menu div {
    width: 60%;
    background: blue;
    box-shadow: -2px 0 5px 5px blue;
}
.active .playlist .menu .line1{
    margin-top: 0;
    transform: rotate(405deg);
}
.active .playlist .menu .line2{
    margin-top: -40px;
    transform: rotate(-405deg);
}
.container{
    border-radius: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    height: 70%;
    box-shadow: 0 0 10px #000, 0 0 20px gray;
    background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(0, 0, 0, 0.6),  rgba(255, 255, 255, 0.6), rgba(0, 0, 0, 0.6), rgba(255, 255, 255, 0.6));
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    transition: .5s;
    overflow: hidden;
}
.container .slider {
    margin-top: 5px;
    width: 57%;
    height: 50%;
    background: url(img/bass1.jpg) no-repeat center / cover;
    border-radius: 50%;
    transition: .5s;
}
@keyframes rotate {
    0% {transform: rotate(0); box-shadow: 0 0  25px 5px red;}
    25% {transform: rotate(90deg); box-shadow: 0 0 25px 5px blue;}
    50% {transform: rotate(180deg); box-shadow: 0 0  25px 5px yellow;}
    75% {transform: rotate(270deg); box-shadow: 0 0  25px 5px green;}
    100% {transform: rotate(360deg); box-shadow: 0 0  25px 5px red;}
}
.container .name {
    width: 100%;
    height: 15%;
    text-align: center;
    font: bold 1.8rem cursive;
    padding-top: 10px;
    transition: .5s;
    -webkit-text-stroke:  1px #fff;
    text-shadow:  -5px 0 5px #000;
}

.container .dots {
    width: 100%;
    height: 15%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    transition: .3s;
    font-size: 2.5rem;
}
.container .dots i {
    color: #fff;
    cursor: pointer;
    transition: .5s;
}
.container .dots i:hover {
    font-size: 3rem;
    color: #222;
}
.container .load {
    width: 100%;
    height: 15%;
    text-align: center;
}
.container .load div {
    padding-top: 10px;
    font: normal 18px sans-serif;
    color: #222;
}
.container .load input {
    appearance: none;
    width: 50%;
    height: 10px;
    border-radius: 10px;
    cursor: pointer;
    border: .5px solid rgba(0, 0, 0, 0.6);
    overflow: hidden;
    transition: .5s;
    background: rgba(192, 192, 192, 0.5);
}
.container .load input::-webkit-slider-thumb{
    appearance: none;
    width: 10px;
    height: 10px;
    background: gray;
    border-radius: 50%;
    outline: 1px solid #fff;
    box-shadow: -640px 0 0 40rem;
}
.playerCont #developer {
    position: absolute;
    left: 50%;
    bottom: 1%;
    transform: translateX(-50%);
    color: white;
    z-index: 2;
    font: bold 1.5rem cursive;
}