*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.audio__block{
    display: grid;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}

.audio__cart{
    display: grid;
    width: 400px;
    height: 600px;
    background-color: #eeebeb;
    border-radius: 10px;
    box-shadow: 10px 10px 10px #747373;
    padding: 50px 20px 50px 20px;
}

.title{
    position: absolute;
    justify-self: center;
    margin-top: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 24px;
}

button{
    background-color: transparent;
    border: none;
}

button:hover{
    cursor: pointer;
}

.btn{
    width: 100px;
    height: 100px;
    justify-self: center;
    align-self: end;
}

.play__btn{
    width: 100%;
    height: 100%;
}

.progress__bar{
    position: relative;
    width: 280px;
    height: 5px;
    justify-self: center;
    border: 3px solid #525151;
    margin-top: 340px;
}

.progress__bar:hover{
    cursor: pointer;
}

.progress__border{
    position: absolute;
    border: 3px solid #000;
    height: 100%;
}

.music__img{
    position: absolute;
    justify-self: center;
    margin-top: 117px;
}

.audio__name{
    position: absolute;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 22px;
    justify-self: center;
    margin-top: 290px;
}

.next__btn{
    position: absolute;
    margin-top: 410px;
    margin-left: 250px;
}

.prev__btn{
    position: absolute;
    margin-top: 410px;
    justify-self: start;
}