html, body{
    box-sizing: border-box;
    margin: 0;
    padding: 0%;
    width: 100%;
    height: 100%;
    font-family: 'museo 500';
    position: relative;
}

.container-music{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #ddd;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

img {
    width: 300px;
    height: 300px;
}

.description{
    width: 300px;
}

.description h2{
    margin-bottom: 5px;
    font-style: normal;
    font-size: 1.2em;
}

.duration{
    width: 300px;
    margin-top: 25px;
}

.bar {
    width: 300px;
    height: auto;
    padding: 0;
    border-radius: 5px;
    
}

input[type=range]{
    width: 300px;
    -webkit-appearance: none;
    appearance: none;
    display: inline-block;
    height: .5em;
    position: relative;
    border-radius: 5px;
    background-color: #dfe9aa;
    outline: none;
}

progress {
    height: 6px;
    width: 0;
    background-color: #333;
}

.dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-left: -10px;
    background-color: #eee;
    
} 

.time {
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.player {
    width: 300px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.button-pause{
    display: none ;
}

.button-play, .button-pause, .arrow {
    cursor: pointer;
}

.button-play, .button-pause {
    font-size: 50px;
    transition: all .5s;
}

.button-play:hover, .button-pause:hover {
    transform: scale(.8);
}

.arrow {
    font-size: 40px;
    transition: all .5s;
}

.arrow:hover {
    transform: scale(.8);
}

.prev-disabled, .next-disabled{
    opacity: .5;
    cursor: initial;
}
