
body{
    background-color: #f9fbfe;
    font-family: 'Chivo Mono', monospace;
    font-weight: bolder;

}
.todos-bg-container {
    background-color: #f9fbfe;
    
}

.todos-heading {
    text-align: center;
    font-size: 46px;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 20px;
}

.create-task-heading {
  
    font-size: 32px;
    font-weight: 700;
}

.create-task-heading-subpart {
    font-size: 32px;
    font-weight: 500;
}

.todo-items-heading {
    font-size: 32px;
    font-weight: 700;
}

.todo-items-heading-subpart {
  
    font-size: 32px;
    font-weight: 500;
}

.todo-items-container {
    margin: 0px;
    padding: 0px;
}

.todo-item-container {
    margin-top: 15px;
}

.todo-user-input {
    background-color: white;
    width: 100%;
    border-style: solid;
    border-width: 1px;
    border-color: #e4e7eb;
    border-radius: 10px;
    margin-top: 10px;
    padding: 15px;
}

.add-todo-button {
    color: white;
    background-color: #4c63b6;
    font-size: 18px;
    border-width: 0px;
    border-radius: 4px;
    margin: auto;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 20px;
    padding-left: 20px;
}

.add-todo-button:hover{
    background-color:#3e4d80;
}
.label-container {
    background-color: #e6f6ff;
    width: 100%;
    border-style: solid;
    border-width: 5px;
    border-color: #096f92;
    border-right: none;
    border-top: none;
    border-bottom: none;
    border-radius: 4px;
}

.checkbox-input {
    width: 20px;
    height: 20px;
    margin-top: 12px;
    margin-right: 12px;
}

.checkbox-label {
    
    font-size: 16px;
    font-weight: 400;
    width: 82%;
    margin: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 5px;
}

.delete-icon-container {
    text-align: right;
    width: 18%;
}

.delete-icon {
    padding: 15px;
}

.checked {
    text-decoration: line-through;
}

#todoUserInput{
    width:460px;
    margin: auto;
}


/* note taking css */

#note-title{
    width:460px;
    margin: auto;
}
#note-content{
    width:460px;
    margin: auto;
}

label{
    margin-left: 7rem;
}




input[type="text"], textarea, input[type="date"] {
	display: block;
	margin-bottom: 10px;
	padding: 5px;
	width: 100%;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}

button[type="submit"] {
    color: white;
    background-color: #4c63b6;
    font-size: 18px;
    border-width: 0px;
    border-radius: 4px;
    margin: auto;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 20px;
    padding-left: 20px;
}

button[type="submit"]:hover {
	background-color: #3e4d80; 
}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

li {
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	margin-bottom: 10px;
}

h1, h2 {
	text-align: center;
}


.deleteButton{
    background-color: #4c63b6;
    

}
.deleteButton{
    background-color: #4c63b6;

}

