* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    outline: none;
}

/* header {
    width: 100%;
    background-color: #eaeaea;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 50px;
} */

/* .player {
    width: 100%;
    height: calc(100% - 50px);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-image: url(../images/chad.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-family: 'League Spartan', sans-serif;
} */

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(2rem);
    background-color: rgba(0, 0, 0, 0.336);
}

.song-details {
    width: 100%;
    padding: 0 54px;
}

.img-area {
    width:250px;
    height: 250px;
    overflow: hidden;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 10px 10px 16px rgba(0, 0, 0, 0.295);
    margin-bottom: 2.5rem;
}

.name {
    font-size: 1.25rem;
    color: #fff;
    padding-bottom: 10px;
    font-weight: lighter;
}

.artist {
    color: #eaeadaad;
    font-weight: lighter;
}

.album-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .controls {
    width: 70%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
} */

/* .controls > * {
    border: none;
    background-color: transparent;
    outline: none;
    cursor: pointer;
    font-size: 2rem;
    color: #fff;
} */

/* .audioC {
    width: 100%;
    padding: 2rem 55px;
} */

/* .song-timer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #eaeadaad;
}

.progress-area {
    width: 100%;
    height: 4px;
    margin-bottom: 15px;
    border-radius: 50px;
    cursor: pointer;
    background-color: #eaeadaad;
    box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.055);
}

.progress-area .progress-bar {
    height: inherit;
    width: 0%;
    position: relative;
    border-radius: inherit;
    background-color: #fff;
}

.progress-bar::before {
    content: '';
    position: absolute;
    background-color: #ddd;
    box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.055);
    border-radius: 50%;
    top: 50%;
    right: -10px;
    z-index: 2;
    height: 10px;
    width: 10px;
    border: none;
    pointer-events: none;
    transform: translateY(-50%);
    transition: all 0.2s ease-in-out;
} */


/* header {
    padding: 10px 0;
    position: relative;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
} */

/* header ul li {
    background-color: #fff;
    padding: 10px 1rem;
    border-bottom: 1px solid #000;
    display: flex;
    justify-content: stretch;
    align-items: center;
}


header ul {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-direction: column;
    max-height: calc(60vh + 10rem);
    overflow-y: auto;
    background-color: #fff;
}

header ul li span {
    margin-left: 20px;
    font-family: 'League Spartan', sans-serif;
    cursor: pointer;
} */

.list-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.164);
}