#channelSubscribe {
    width: 65px;
}
#channelThumbnail {
    width: 100%;
    border-radius: 10px;
}
.channelUserInfo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.channelUserInfo .channelTitle{
    font-size: x-large;
    font-weight: bold;
    background: transparent;
}
.channelUserInfo span {
    color: blue;
}
.vid-list .flex-div img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.channelContainer {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-wrap: wrap;
}
.channel-input-item {
    width: 450px;
    display: flex;
    justify-content: start;
    align-items: center;
}

.channel-input-item label{
    width: 70px;
}

#channelThumbnailImage{
    width: 150px;
    height: 170px;
    padding: 20px 20px;
    margin-left: 20%;
    border-radius: 20%;
}

#deleteChannelThumbnailIcon{
    width: 40px;
}

/* 미디어 쿼리 -> 화면 조정 */
@media (max-width:900px) {
    #channelThumbnail{
        width: 80%;
    }
}