@font-face {
    font-family: 'SUIT-Medium';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Medium.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

*{
    font-family: 'SUIT-Medium';
}

body, ul {
    margin:0;
    padding: 0;
}

body {
    background-image: url(images/bg.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

}

h1 {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;

}

header {
    padding: 10px;
}

ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style-type: none;
    padding: 20px;
    

}

li {
    width: 100%;
    height: 50px;
    line-height: 10px;
    background-color: rgba( 255, 255, 255, 0.5 );
    border-radius: 10px;
    margin: 10px 0px;
    padding: 0 0 0 10px;
    transition: all 0.5s;
    
}

li:hover {
    margin: 10 -700px;
    box-shadow: 0 0 30px rgba(0,0,0,0.2);
    background-color: white;
}

/* 호박 */
li:first-child {
    display: flex;
}

li .hobak:hover{
    /* background-image: url(images/icon-open.png); */

}
li .hobak {
    padding: 10px;
}
section {
    margin-top: -20px;
    padding: 0 5px 0 5px;
}

input {
    border-radius: 10px;
    width: 250px;
    padding: 5px;
    border-color: transparent;
}

button {
    background-color: white;
    border-color: transparent;
    border-radius: 10px;
    margin-left: 10px;
}

button:hover {
    background-color: black;
    color:white;
}
.wrapper{
    width: 300px;
    height: 400px;
    margin: 100px auto;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(255, 255, 255, 0.386) 0px 7px 29px 0px;
}

.todolist {
    background-image: url(images/background.gif);
    border-radius: 3px 0 0 3px;
    height: 26px;
    line-height: 26px;
}

.todolist-header {
    text-align: center;
    color: white;
}



.todo-ctr {
    display: flex;

}