@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&family=Young+Serif&display=swap');

* {
    margin: 0;
    box-sizing: border-box;
}

body{
    background-color: rgb(4, 4, 110);
    font-family: 'Montserrat', sans-serif;
font-family: 'Young Serif', serif;
}
main {
    max-width: 500px;
    margin: 0 auto;
}
#new-task-input {
    padding: 10px;
    border: 1px solid #00377e;
    font-size: 18px;
    width: 100%;
}
.task-input {
    margin: 50px 0;
}
.task-input h1 {
    margin-bottom: 20px;
    color: white;
}
#new-task-submit {
    padding: 13px;
    border: none;
    outline: none;
    background-color: #0055c3;
    color: white;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 10px;
}
.task-list h2 {
    margin-bottom: 18px;
    color: white;
}
#tasks {
    background-color: #00193b;
    padding: 20px;
    border: 2px solid #043e8a;
}
.tasks {
    margin-bottom: 20px;
    background-color: #00132d;
    padding: 10px;
}
.text {
    background-color: transparent;
    border: none;
    color: white;
    width: 100%;
    padding: 10px 0;
    border-bottom:1px solid #0055c3;
    margin-bottom: 10px;
}
.edit, .delete, .complete {
    padding: 10px 20px;
    text-transform: uppercase;
    color: white;
    background-color: #0055c3;
    outline: none;
    border: none;
    cursor: pointer;
}
.delete {
    background-color: rgb(204, 7, 7);
    margin: 0px 10px;
}
.complete {
    background-color: rgb(11, 167, 11);
}
.mark-completed {
    text-decoration: line-through;
    opacity: 0.5;
}