@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');
* {
    margin: 0;
    padding: 0;
}

.background {
    position: absolute;
    height: 100%;
    width: 100%;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    filter: blur(10px);
    z-index: -1;
    transition: background 0.5s ease, width 0.5s ease, height 0.5s ease;
    background-size: 100% auto;
}

.player {
    width: 500px;
    height: 650px;
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    background: #000000;
    border-radius: 10px;
    box-shadow: 0 0 10px #000000;
}

.img {
    width: 500px;
    height: 500px;
    transition: background 0.5s ease, width 0.5s ease, height 0.5s ease;
}

.player_controls {
    height: 150px;
    width: 500px;
    background: -webkit-linear-gradient(45deg, rgb(40, 40, 40), rgb(133, 133, 133));
    z-index: 4;
}

.controls {
    display: flex;
    gap: 15px;
    position: absolute;
    bottom: 1%;
    left: 30%;
}

.controls-img {
    width: 50px;
    height: 50px;
    filter: invert(1);
    cursor: pointer;
    transition: all 0.5s ease;
    &:hover {
        opacity: .75;
    }
}

.download {
    position: absolute;
    bottom: 2%;
    left: 90%;
    width: 40px;
    height: 40px;
}

.song-artist {
    position: absolute;
    z-index: 4;
    color: rgb(1, 174, 251);
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 20px;
    bottom: 19%;
    left: 33%;
    transition: all 0.5s ease;
}

.song-title {
    position: absolute;
    z-index: 4;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    bottom: 15%;
    left: 33%;
    transition: all 0.5s ease;
}

.progres-bar {
    background: #000000;
    width: 80%;
    height: 5px;
    position: absolute;
    bottom: 13%;
    left: 10%;
    cursor: pointer;
}

.progres {
    height: 5px;
    background: #ffffff;
    width: 0%;
}

.slider-thumb {
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    border-radius: 50%;
    position: absolute;
    bottom: -2.5px;
    left: 0;
    cursor: pointer;
    transform: translateX(-50%);
}


.time-bar {
    position: absolute;
    z-index: 4;
    color: rgb(1, 174, 251);
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 15px;
    bottom: 14%;
    left: 83%;
    transition: all 0.5s ease;
}

.time {
    position: absolute;
    z-index: 4;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    bottom: 10%;
    left: 10%;
}

footer {
    background-color: black;
    flex-shrink: 0; 
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    gap: 55%;
    position: absolute;
    bottom: 0%;
}

.year-git {
    display: flex;
    align-items: center;
    gap: 15px;
}

.text-footer {
    color: white;
    font-size: 20px;
    text-decoration: none;
}

.git:hover {
    color: rgb(252, 176, 113);
}

.rss-img{
    width: auto;
    height: 40px;
}