@import url(//fonts.googleapis.com/earlyaccess/jejumyeongjo.css);

*{  
    font-family: 'Jeju Myeongjo', serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body{
    width: 100%;
    height: 100vh;
    background: rgba(141, 139, 171, 0.808);
    background: linear-gradient(90deg, rgb(136, 130, 209) 2%, rgba(153,71,207,1) 32%, rgba(0,212,255,1) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

ul{
    list-style: none;
}


.hidden{
    display: none;
}

/* 반응형 */


@media screen and (min-width : 600px){
    .main{
        width: 90%;
    }
}

@media screen and (min-width : 1440px){
    .main{
        width: 70%;
    }

    .clock{
        font-size: 70px;
        color: aliceblue;
        margin: 20px;
    }
}

.main-container{
    margin-bottom: 40px;
}

/* 투 두 파트 */

.todo-container{
    background-color: rgba(236, 161, 161, 0.205);
    display: flex;
    justify-content: center;
    height: 700px;
}


.todo-container > div{
    margin: 20px;
    padding: 20px;
    width: 300px;
    border-radius: 20px;
    background-color: rgba(240, 248, 255, 0.274);
    overflow-y: scroll;
    display: block;
}


.todo-container > div h3{
    width: 90px;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
    background-color: rgba(240, 248, 255, 0.76);
    position: sticky;
    top: 10px;
}

.todo-container > div ul li{
    background-color: rgba(240, 248, 255, 0.575);
    margin: 20px 0;
    padding: 10px;
    transition: transform .7s;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    position: relative;
}


.todo-container > div input.add-input{
    width: 100%;
    height: 15px;
    padding: 20px;
    margin-top: 15px;
    border-radius: 20px;
    border: 0px 
}

.todo-container > div ul li:hover{
    transform: scale(1.05);
    cursor: pointer;
}

.todo-container > div ul li{
    word-break:break-all;
}

.todo-container > div ul li div{
    width: 80px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
}


/*  버튼  */

.move-right, .edit-button{
    color: rgba(0, 0, 0, 0.507);
    font-size: 15px;
    margin-left: 10px;
    background-color:transparent;
    border: none;
    transition: transform .5s;
}

.move-right:hover, .edit-button:hover{
    transform: scale(1.05);
    cursor: pointer;
}

.edit-button:hover{
    color: rgb(253, 117, 117);
}

.move-right:hover{
    color: rgb(121, 181, 235);
}

/* 할일 */
.todo-container div:nth-child(1){

}

/* 진행중 */
.todo-container div:nth-child(2){

}

/* 완료 */
.todo-container div:nth-child(3){

}