*{
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: whitesmoke;
}
body{
    background: url(estrela-cadente.gif);
    background-size: cover;
    width: 100%;
    height: 100%;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.player{
    background: rgba(162, 160, 248, 0.315);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 500px;
    height: 600px;
    align-items: center;
    margin-top: 12px;
    box-shadow: 10px 10px 10px rgba(65, 64, 64, 0.336);
    
}
.titulo{
    text-align: center;
}
.titulo h1{
    font-size: 25px;
    margin-bottom: 10px;
}
.audio{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#Cover{
    width: 225px;
    height: 225px;
    border-radius: 25px;
    margin: 2.5rem 0;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.418);
}
.controls{
    margin-top: 10px;
    background: whitesmoke;
    border-radius: 30px;
    width: 290px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.controls img{
    height: 15px;
    margin-top: 5px;
    margin-right:10px;
}

button{
    border: none;
}
button:hover{
    cursor: pointer;
}
#pause{
    display: none;
}
.barra{
    height: 5px;
    border-radius: 20px;
    width: 160px;
    border: 1px solid rgba(0, 0, 0, 0);
    position: relative;
    background: rgb(205, 212, 219);
    margin-top: 2px ;
    margin-right: 12px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
progress{
    display: flex;
    height: 100%;
    border-style: none;
}

.ball{
    height: 10px;
    width: 10px;
    position: sticky;
    background:whitesmoke;
    border: 1px solid black;
    border-radius: 50%;
    left: 1px;
}
h2{
    margin-bottom: 1.5rem;
}
#volume{
    position: relative;
}
#volume-control{
    position: absolute;
    transform: rotate(-90deg);
    width: 80px;
    height: 6px;
    display: none;
}
footer{
    background-color: rgba(0, 0, 0, 0.466);
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 0;
}

@media screen and (max-width: 495px) and (min-width: 0px)  {
    .player{
        width: 340px;
        height: 550px;
    }
    #Cover{
        width: 175px;
        height: 175px;
    }
    h2{
        font-size: 20px;
    }
}