
* {
    font-family: 'Dongle', sans-serif;
}

.bg01 {
    background: url(../img/bg2.gif) no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100vh;
}


.iconMusic {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.iconMusic a img {
    width: 100px;
    height: 100px;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid #fff;
    border-radius: 50%;
}
.iconMusic:hover a img {
    transform: scale(1.1);
}

/* musicWrap */
#musicWrap {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 350px;
    height: 500px;
    border-radius: 20px;
    padding: 20px;
    background-color: #ffffffa1;
    overflow: hidden;
}
.bg_blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/music_cover.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
    filter: blur(5px);
    border-radius: 20px;
    opacity: 0.5;
    z-index: 1;
}
.music__inner {
    position: relative;
    z-index: 10;
}
.music__inner .music__header h2 {
    font-size: 1.8rem;
    text-align: center;
    color: #fff;
}
.music__contents {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
.music__view {
    width: 80%;
}
.music__view img {
    border: 1px solid #fff;
}
.music__list {
    width: 100%;
    background-color: #fff;
}