@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,500;1,400&display=swap');

body {
    margin: 0px;
    font-family: "Raleway", sans-serif;
}
.container {
    background-color: #e0e5ec;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.player {
    width: 300px;
    height: 550px;
    background-color: #e0e5ec;
    user-select: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 6px 6px 16px rgba(163, 177, 198) , 0px 0px 7px rgba(163, 177, 198), -8px -8px 50px rgba(255, 255, 255, 0.8), 3px 3px 25px rgba(0, 0, 0, .1);
    
}

.player-album {
    width: 150px;
}

.player-title {
    width: 95%;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 35px 0px;
}
.player img {
    border-radius: 50%;
    max-width: 100%;
    box-shadow: 0px 0px 7px rgba(163, 177, 198), 
                0px 0px 7px rgba(163, 177, 198),
               -8px -8px 50px rgba(255, 255, 255, 0.8),
                3px 3px 25px rgba(0, 0, 0, .1);
}
.rotate {
    animation: rotation 15s infinite linear;  
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    } to {
        transform: rotate(359deg);
    }
}

.player-artist {
    font-size: 1.2em;
    font-weight: 500;
    opacity: 0.5;
    margin: 20px 0px 0px 0px;
}
.player-song {
    width: 100%;
    text-align: center;
    font-weight: 400;
    font-size: 1em;
    opacity: 0.5;
    margin: 0px;
}
.player-level {
    width: 80%;
    -webkit-appearance: none;
    appearance: none;
    border: none;
    margin-top: 40px;
    background-color: #e0e5ec;
    outline: none;
}
.player-level::-webkit-slider-runnable-track {
    background-color: #d7dbdd;
    height: 6px;
    border-radius: 5px;
}
.player-level::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 100%;
    background-color: #7c87fe;
    height: 18px;
    width: 18px;
    margin-top: -6px;
}
.audio-duration {
    margin-top: -30px;
    display: flex;
    width: 78%;
    font-size: 10px;
    font-weight: 600;
    color: #a1a1a1;
    letter-spacing: 1px;
}
.start {
    flex: 1;

}
.player-audio {
    visibility: hidden;
}
.player-controls {
    display: flex;
    width: 95%;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 25px;

}
.player-btn {
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: -4px -4px 20px 0px #FFF9, 
                -6px -6px 6px 0px #FFF9,
                8px 8px 20px #0001, 
                5px 5px 6px 0px #0001;
    width: 65px;
    height: 65px;
    margin-top: 20px;
}
.player-btn:active {
    box-shadow: inset -8px -8px 20px #FFF9,
                inset -5px -5px 6px #FFF9,
                8px 8px 20px #cccccc,
                inset 5px 5px 6px #cccccc;
}
.blue {
    background-color: #5c87fe;
    color: #fff;
}
.blue:active {
    box-shadow: inset -8px -8px 20px #5c87fe,
                inset -5px -5px 6px #5c87fe,
                inset 8px 8px 20px #0003,
                inset 5px 5px 6px #0001;
}