main {
    background-color: #e9f0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 15px;
}

.container {
    background-color: white;
    max-width: 750px;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    min-height: 375px;
}

.tasks-counter {
    color: #adb5bd;
    margin-bottom: 35px;
}

.write-tasks {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.btn-add-task {
    min-width: 100px;
    font-size: 18px;
    padding: 10px;
}

.inp-add-task {
    font-size: 18px;
}

.task {
    display: flex;
    font-size: 17px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid  #e9ecef;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 10px;
}

.task:hover {
    border-color: #dee2e6;
}

.task-title {
    font-weight: 500;
    display: flex;
    align-items: center;
}

input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

input[type="checkbox"]:checked + div {
  color: #adb5bd;
  text-decoration: line-through;
}

.trash-icon {
    color: #9da1a6;
    padding: 5px;
    border-radius: 5px;
    transition: 0.3s;
}

.trash-icon:hover {
    color: #ef4444;
    background-color: #fee2e2;
}

.no-tasks {
    position: absolute;
    top: 73%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #adb5bd;
}