* {
    font-family: 'Shizuru', cursive;
}

:root {
    --main-color : #999BFF;
    --second-color : #9A80E8;
    --third-color : #C98CFF;
    --main-gradient : linear-gradient(45deg , #999BFF , #9A80E8 , #C98CFF);
    --main-gradient-transparent : linear-gradient(45deg , #999bff62 , #9A80E862 , #C98CFF62);
}

main {
    background: url('./cover/cover-5.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
    border-radius: 10px;
}
  
/* Track */
::-webkit-scrollbar-track {
    background: transparent;
}
  
  /* Handle */
::-webkit-scrollbar-thumb {
    background: var(--third-color);
    transition: all 0.5s ease-in-out;
    border-radius: 10px;
}

.text-gradient {
    background: var(--main-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.scroll-y {
    overflow-y: scroll;
}

.main-wrapper {
    height: 500px;
    background: var(--main-gradient-transparent);
    backdrop-filter : blur(5px);
    padding : 50px;
    border-radius: 50px;
    box-shadow:  4px 4px 6px 0 rgba(0,0,0,.5),
                -4px -4px 6px 0 rgba(200, 185, 136, .2), 
                inset -4px -4px 6px 0 rgba(0,0,0,.5),
                inset 4px 4px 6px 0 rgba(200, 185, 136, .3);
}

/* Buttons */
.btn-menu {
    height: 50px;
    width: 50px;
    border-radius: 50px;
    background: var(--main-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    transition:all 0.6s cubic-bezier(.79,.21,.06,.81);
    font-size: 26px;
    color: white;
    text-decoration: none;
}
.btn-play-song {
    height: 40px;
    width: 40px;
    border-radius: 50px;
    background: var(--main-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    transition:all 0.6s cubic-bezier(.79,.21,.06,.81);
    font-size: 18px;
    color: white;
    text-decoration: none;
}

.btn-menu:hover , .btn-play-song:hover {
    background: var(--third-color);
    color: white;
}

.btn-menu.active , .btn-play-song.active {
    animation: colorchange 3s linear infinite;
}

/* Lista canzoni */
.card-song {
    padding: 10px 30px;
    border-bottom: solid 2px var(--second-color);
}

/* Sezione Player */
.album-cover {
    border-radius: 100%;
}

.album-cover.play {
    animation-name: rotate;
    animation-duration: 2.5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.player-progress{
    display: flex;
    height: 15px;
    overflow: hidden;
    font-size: .75rem;
    background-color: #454545c7;
    border-radius: 30px;
}

.player-progress .progress-bar{
    background: var(--main-gradient);
    border-radius: 30px;
}

@keyframes colorchange {
    to {filter: hue-rotate(360deg);}
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}


  
