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

html,
body {
    margin: 0 auto;
    width: 100%;
    height: 100%;
    background-color: rgb(188, 222, 249);
    min-width: 600px;
    min-height: 100px;
}

.appWrapper {
    margin: 0 auto;
    width: 600px;
    height: 100%;
    background: none;
    position: relative;
}

.appTitle {
    font-family: arial;
    font-size: 35px;
    color: blue;
    padding-top: 10px;
    text-align: center;
}

.formWrapper {
    position: absolute;
    bottom: 10px;
    left: 0px;
    background-color: white;
    width: 600px;
    padding: 5px;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(2, 111, 253);
}

#newTaskForm {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
}

#newTaskForm [name=input] {
    width: 100%;
    height: 25px;
    resize: none;
    background-color: white;
    font-size: 18px;
    font-family: arial;
    border-style: solid;
    border-width: 0px;
    border-color: rgb(97, 167, 252);
    text-indent: 5px;
}

#newTaskForm [name=input]:focus {
    outline: none;
}

#newTaskForm [name=submitBtn] {
    cursor: pointer;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(97, 167, 252);
    background-color: white;
    color: rgb(1, 86, 234);
    font-size: 16px;
    font-family: arial;
    width: 80px;
    height: 30px;
}

#newTaskForm [name=submitBtn]:hover {
    background-color: rgb(239, 240, 244);
}

#newTaskForm [name=submitBtn]:active {
    background-color: rgb(236, 234, 234);
}

#tasksZone {
    position: absolute;
    top: 60px;
    left: 0px;
    width: 600px;
    height: calc(100% - 130px);
    background: none;
    border: none;
    display: revert;
    overflow-y: auto;
}

#tasksZone::-webkit-scrollbar {
    display: none;
}

#taskItemElement {
    display: none;
}

.taskItem,
#noTask {
    width: 100%;
    height: 50px;
    background-color: rgb(102, 158, 249);
    border-width: 1px;
    border-color: white;
    border-style: solid;
    border-radius: 10px;
    margin-bottom: 10px;
    position: relative;
}

.taskItem.deleteTaskButton {
    cursor: pointer;
    width: 30px;
    height: 30px;
    color: white;
    font-size: 25px;
    font-family: arial;
    background: none;
    border-style: solid;
    border-width: 1px;
    border-color: white;
    position: absolute;
    right: 10px;
    top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1000px;
}

.taskItem.contentWrapper {
    background: none;
    border: none;
    border-radius: 0px;
    width: 500px;
    height: 30px;
    position: absolute;
    left: 50px;
    top: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
}

.taskItem.content {
    background: none;
    border: none;
    border-radius: 0px;
    height: fit-content;
    width: fit-content;
    padding: none;
    margin-top: 10px;
    font-size: 16px;
    font-family: arial;
    overflow-x: auto;
    color: black;
}


.taskItem.checkbox {
    position: absolute;
    left: 15px;
    top: 15px;
    width: 20px;
    height: 20px;
}

#noTask {
    user-select: none;
    pointer-events: none;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: arial;
    color: white;
}