html,body{
    margin:0;
 }

h1{
    color: #ef8457;
    /* font-weight: 400; */
    cursor: pointer;
    font-weight: bold;
}


.new-todo-form{
    margin-top: 1em;
}

.new-todo-form button{
    margin-left: 1em;
}

.edit-todo, .passcode-edit{
    height: 2em;
    font-size: 1.5em;
    font-family: 'IBM Plex Mono';
    font-weight: bold;
    width: 70vw;
    border: none;
}


li{
    line-height: 3ch;
}


button{
    cursor: pointer;
    background-color:#d9f2ec;
    height: 2em;
    border: none;
}


.button{
    font-size: 1.5em;
    font-weight: bold;
    padding: 0em .05em 0em .05em;
    cursor: pointer;
}

.space{
    padding: 0em .25em 0em .25em;
}

#vault{
    position: absolute;
    top: 0px;
    left: 0px;
    min-height: 100vh;
    min-width: 100vw;
    background-color: #fef1de;
    z-index: 1;
    border: 1em inset #959187;
    padding: 1em;
}

#vault-door{
    position: absolute;
    background-color: #fef1de;
    top: 0px;
    left: 0px;
    z-index: 2;
    padding: 1em;
    min-height: 100vh;
    min-width: 100%;
    transition: all 1s ease-out;
}

.todo-list{
    margin-top: 2em;
}

.todo{
    display: flex;
    align-items: center;
}

.todo-list li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    border-bottom: 2px dotted #959187;
    overflow-wrap: break-word;
}

.todo-list li:nth-child(1){
    border-top: 2px dotted #959187;
}


.edit-button{
    margin-left: 1em;
    color: #959187;
}

.todo-list .todo-checkbox{
    font-size: 2em;
    margin-right: .25em;
}

.clear-button{
    margin-top: 2em;
    background-color: #8999a8;
    color: white;
}


.color-picker{
    height: 4em;
    width: 2em;
    border: none;
}


.todo-checkbox, .save-button, .edit-button{
    cursor: pointer;
}

.open{
    /* opacity: 0; */
    pointer-events: none;
    transform: translateX(-100%); 
}

.checked{
    color: #8999a8;
}

.passcode-edit label{
    font-size: .75em;
}

.secret-display{
    display: flex;
    justify-content: space-between;
    margin-top: 2em;
    margin-bottom: 2em;
}

.secret-display p{
    font-size: 2.5em;
    font-weight: bold;
    line-height: 1.5em;
}

.secret-display .edit-button{
    font-size: 2em;
    color: black;
}

.secret-edit textarea {
    width: 60vw; 
}