#songCover {
    background-color: rgba(255, 255, 255, 0.02);
    background-size: cover;
    background-repeat: no-repeat;

    border: 1px solid rgba(62, 52, 52, 0.1);
    border-radius: 7px;

    display: flex;
    justify-content: center;
    align-items: center;

    height: 70px;
    width: 70px;
}

#musicList {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-grow: initial;

    gap: 15px;
    width: 100%;
    height: auto;
}

#music {
    display: grid;
    gap: 25px;
    padding-bottom: 30px;
}

.albumCoverPlaying {
    background-size: cover;

    border-radius: 10px;
    width: 130px;
    height: 130px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.nowPlaying {
    height: auto;
    display: flex;
    gap: 25px;
}