* {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
}

body {
    background: url("imagenes/podio-rojo.jpg");
    background-size: cover;
    backdrop-filter: blur(0px);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 0;
}

main {
    height: 100%;
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    background-size: cover;
}

.container {
    /*background: linear-gradient( gray, black);*/
    background: url("imagenes/podio-rojo.jpg");
    width: 300px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    padding: 30px 20px;
    box-sizing: border-box;
    color: aliceblue;
    border-radius: 10px;
}

.cover img {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background-size: cover;
}

.activeRotate {
    animation: rotate 8s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.container h3 {
    font-size: 14px;
    margin: 0;
    width: 100%;
    align-items: flex-start;
    height: 15px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    margin: 15px 0;
    background: rgb(85, 82, 82);
}

.progress-bar .progress {
    display: absolute;
    width: 0%;
    background: #F7104A;
    height: 100%;
}

.buttons {
    display: flex;
    margin: 0;
    padding: 0;
    width: 50%;
    align-items: center;
    text-align: center;
    justify-content: space-between;
    
}

.buttons button {
    display: flex;
    font-size: 24px;
    padding: 2px 0px;
    background: transparent;
    border: none;
    color: rgba(245, 245, 245, 0.89);
    width: 30px;
    height: 30px;
    align-items: center;
    text-align: center;
    justify-content: center;   
}

.buttons button:hover {
    cursor: pointer;
}

.buttons .pause {
    display: none;
}

.mid {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.songs-container {
    overflow: scroll;
    overflow-x: hidden;
    height: 80px;
    padding-right: 20px;
}

.songs-container::-webkit-scrollbar {
    -webkit-appearance: none;
}

.songs-container::-webkit-scrollbar:vertical {
    width: 5px;
}

.songs-container::-webkit-scrollbar-button:increment,.songs-container::-webkit-scrollbar-button {
    display: none;
} 

.songs-container::-webkit-scrollbar:horizontal {
    height: 8px;
}

.songs-container::-webkit-scrollbar-thumb {
    background-color: gray;
    border-radius: 20px;
}

.songs-container::-webkit-scrollbar-track {
    border-radius: 10px;  
}

.songs {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: small;
}

.songs li {
    margin: 5px 0px;
}

.songs a {
    text-decoration: none;
    color: gray;
}

.songs a.active {
    color: aliceblue;
}

@media(max-width: 760px) {
    body {
        background-size: auto;
        backdrop-filter: blur(5px);
    }
}

@media(max-width: 520px) {
    .buttons {
        width: 60%;
    }

    main {
        width: 80%;
    }
}
