@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "poppins",sans-serif;
}

body {
    background-color: #57737a;
}

.container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 350px;
    padding: 15px 15px 25px;
    background-color: #c9fbff;
    border-radius: 5px;

}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 20px;
}

nav span {
    width: 40px;
    height: 40px;
    padding: 5px;
    border-radius: 50%;
    background-color: #e6e5e5;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #57737A;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    font-size: 18px;
    text-align: center;
}


.details {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.details img {
    width: 100%;
    max-width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid #85BDBF;
    /* margin-bottom: 10px; */
}

.details h1 {
    margin-top: 16px;
    font-weight: 600;
    font-size: 18px;
}

.details p {
    font-size: 14px;
    font-weight: 400;
}

.playback {
    margin: 0 10px;
}

#progress {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #57737a;
    border-radius: 4px;
    margin: 20px 0;
    cursor: pointer;
}

#progress::-webkit-slider-thumb {
    -webkit-appearance: none;
    background: #57737A;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border:8px solid #e6e5e5;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
}

.controls {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 20px 0 10px;
}

.controls button {
    width: 50px;
    height: 50px;
    outline: none;
    border: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.392);
    border-radius: 50%;
    padding: 5px;
    cursor: pointer;
}

.controls button:nth-child(2n+1) {
    background-color: #e6e5e5;
    color: #57737A;
    font-size: 16px;
}

.controls button:nth-child(2n) {
    transform: scale(1.5);
    font-size: 20px;
    background-color: #57737A;
    color: #e6e5e5;
}