body {
    background-color: #3c3a4a;
    font-family: 'Noto Sans KR', sans-serif;
    padding: 32px;
}

.container {
    width: 400px;
    background-color: #7352d0;
    color: #ffffff;
    margin: 0 auto;
    background-image: 
        linear-gradient(90deg, rgba(159, 84, 209, 0.2), 40%, rgba(115, 82, 208, 0.6)),   /* gradient generator */
        url('bg.png');
    background-repeat: no-repeat;   /* 반복 안함 */
    background-position: center;    /* 정렬(bottom, center, left, right, top...) */
    background-size: cover;     /* 이미지 크기(contain: 이미지가 잘리지 않는 최대 크기, 100px 50px) */
}

.thumb {
    height: 226px;
}

.progress {
    background-color: rgba(255, 255, 255, 0.2);
}

.progress-value {
    background-color: #5f23e0;
    width: 20%;
    height: 4px;
}

.player {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 14px 24px;
    font-size: 16px;
}

.player-icon {
    height: 13px;
    margin-right: 16px;
}

.player-title {
    font-weight: 100;
    margin-right: 16px;
}

.player-artist {
    font-weight: lighter;
    color: rgba(255, 255, 255, 0.5);
}

.song {
    width: 352px;
    margin: 10px auto;
    background-color: #434153;
    padding: 16px 24px;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.2); /* x위치, y위치, 퍼짐 정도, 크기, 색, */
}

.song-title {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.song-artist {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
}