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

h1,h2 {
    font-family: "Comic Relief", sans-serif;
}

body {
    font-family: "JetBrains Mono", monospace;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 14px;
    min-height: 100vh;
}

h1 {
    text-emphasis: "🛴";
    text-align: center;
}

form, section {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

form textarea {
    resize: none;
    width: 100%;
    min-height: 60px;
    padding: 14px;
    border-radius: 5px;
    border: 1px solid lightgray;
}

form button {
    font-family: "Comic Relief", sans-serif;
    padding: 4px;
    cursor: pointer;
    border: transparent;
    background-color: rgb(165, 221, 253);
    border-radius:5px;
}

.todoContainer, .todo, .todoTemplate {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.todo, .todoTemplate {
    padding: 14px;
    border: 1px solid lightgray;
    border-radius: 5px;
}

.todoTemplate {
    color: gray;
}

.buttonContainer {
    display: flex;
    gap: 6px;
    margin-left: auto;
}

.iconBtn {
    border: none;
    background: transparent;
    outline: none;
    cursor: pointer;
    padding: 0 8px;
    display: grid;
    place-items: center;
    aspect-ratio: 1/1;
    border-radius: 25%;
}

.iconBtn:hover {
    background-color: rgb(165, 221, 253);
}