html, body {
    margin: 0; /* tira as bordas do html */
    padding: 0;
    display: flex; /* organiza os itens horizontalmente, como linha*/
    flex-direction: column; /* organiza os itens em colunas, verticalmente */
    align-items: center; 
    height: 100vh; /* altura de 100%, pega toda a area*/
    justify-content: center; /* só funciona e só posiciona exatamente no centro se tiver uma altura para baseas o centro */
    background-color: #1C1C1C	;
    color: #ddd;
     font-family: "Montserrat", sans-serif

}
img {
    width: 300px;
    height: 300px;
}
.descricao {
    width: 300px;
}
h2 {
    margin-bottom: 5px;
}
.duracao {
    width: 300px;
    margin-top: 20px;
}
.barra {
    width: 300px;
    height: 6px;
    border: 1px solid #eee;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: flex-start ;

}
progress {
    height: 6px;
    width: 0%;
    background-color: #1C1C1C;
}
.ponto {
    width: 20px;
    height: 20px;
    background-color: #eee;
    border-radius: 50%;
    margin-left: -10px;
}
.tempo {
    display: flex;
    width: 300px;
    justify-content: space-between;

}
.player {
    width: 300px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 15px;

}
.botao-play,.botao-pause {
    font-size: 50px;
    cursor: pointer;
    
}
.setas {
    font-size: 40px;
    cursor: pointer;
}
.botao-pause {
    display: none;

}