html,
body {
    min-height: 100vh;
}

body {
    background-color: #E4E5E7;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.aside {
    height: 400px;
}

.main {
    height: 400px;
}

.d-flex {
    display: flex;
}

.task-title {
    font-weight: 400;
    padding-top: 5px;
}

.gray {
    color: #bdbdbd;
}

.task-title--done {
    text-decoration: line-through;
    color: #cdcdcd;
}

.task-items__buttons {
    display: flex;
    column-gap: 5px;
}

.notify-holder {
    height: 60px;
    margin-bottom: 20px;
}

.empty-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 1em;
    padding-bottom: 1em;
}

.empty-list__title {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 300;
}

.empty-list__icon {
    color: #42BE2A;
    font-size: 32px;
}

.btn-action {
    background-color: #e0e5ea;
    padding: 8px 10px;
    cursor: pointer;
    border-radius: 4px;
    border: 0;
    transition: opacity 0.2s ease-in;
    opacity: 0.5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-action:hover {
    opacity: 1;
    background-color: #e0e5ea;
}

.btn-action img {
    pointer-events: none;
}

.none {
    display: none !important;
}

.float-right {
    float: right;
}

.copyright {
    margin-top: 40px;
    font-size: 14px;
    color: gray;
    text-align: center;
    margin-bottom: 30px;

}