*{margin:0}

:root {
    --mainC: #cdad62;
}

html{
    font-family: Inter,"Source Sans Pro",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
    color: white;
    font-size: 15px;
    word-spacing: 1px;
}

body{background-color: #121214}

.content {
    display: flex;
    justify-content: center;
    align-items: center;

    height: 100vh;
}

a {
    text-decoration: inherit;
    color: inherit;
}

.player {

    display: flex;
    flex-direction: column;
    background-color: #212226;
    max-width: 350px;
    padding: 37px 34px;
    border-radius: 5px;

}

.player img {
    border-radius: 1em;
    width: 100%;
    height: auto;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.15);
    margin-bottom: 1em
}

.player>p{
    font-weight: 700;
}
.player>p>small{
    opacity: 0.8;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 3px
}

.bottom{
    display:flex;
    flex-direction: column;
}

.progresso {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.progresso .tempo {
    display: flex;
    justify-content: space-between;
}

.progresso .tempo p{
    font-size: 10px;
    opacity: 0.5;
}

.player>div:last-child .progresso {
    margin: 20px 0;
}

.progresso {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.progresso .barra {
    position: relative;
    display: flex;
    margin: 0 0 8px;
}

.progresso .barra>div {
    height: 4px;
}

.progresso .barra>div::after{
    content: '.';
    visibility: hidden;
}

.progresso .barra>div:first-child {
    background: var(--mainC);
    border-radius: 4px 0 0 4px;
}

.progresso .barra>div:nth-child(2) {
    background: #494949;
    border-radius: 0 4px 4px 0;
}

.progresso .barra>div:nth-child(3) {
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: var(--mainC);
    border: 2px solid #212226;
}

.controle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.controle .foco {
    cursor: pointer;
    background: #28292e;
    padding: 12px 16px;
    border-radius: 6px;
    line-height: 0;
    /* border: 1px solid #32343c; */
    height: 20px;
}
.controle .foco:hover {
    background: #34353b;
}

.controle i {
    cursor: pointer;
    font-size: 19px;
    color: var(--mainC);
}
