*{
    margin: 0;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    box-sizing: border-box;
}
.container{
    width: 100%;
    height: 100vh;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.music-player{
    background: #ffffff;
    width: 400px;
    padding: 25px 35px;
    text-align: center;
}
nav{
    display: flex;
    justify-content: space-between;
    margin-bottom: 30[x];
}
.song-img{
    width: 220px;
    border: 8px solid #fff;
    box-shadow: 0 10px 60px rgba(255, 26, 26, 0.22);
}
#progress{
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #ffcdcd;
    border-radius: 4px;
    cursor: pointer;
    margin: 40px 0;
}
#progress::-webkit-slider-thumb{
    -webkit-appearance: none;
    background-color: #ffcdcd;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 10px 60px rgba(255, 26, 26, 0.22);
}
/* Add this to your existing CSS */
.controls {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.right {
    position: absolute; /* Allows for individual placement */
    top: -29px; /* Adjust vertical position */
    left: 250px; /* Adjust horizontal position */
}

.left {
    position: absolute; /* Allows for individual placement */
    top: -29px; /* Adjust vertical position */
    left: 50px; /* Adjust horizontal position */
}

.pause {
    position: absolute; /* Allows for individual placement */
    top: -37px; /* Adjust vertical position */
    left: 160px; /* Adjust horizontal position */
}
.pause img{
    width: 30px !important;
}


