*{
    margin: 0px;
    padding: 0px;
}
body{
    background-color:darkgrey;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}
header{
    display: flex;
    flex-direction: column;
    justify-content: end;
    height: 30%;
    width: 100%;
    text-align: center;
}
#novasTarefas{
    padding: 1rem;
}
.statusTarefa{
    display: flex;
    justify-content: space-around;
}
#nenhumaTarefa{
    text-align: center;
}
main{
    display: flex;
    align-items: center;
    height: 70%;
    width: 100%;
}
#containerTarefas{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.tarefas{
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}
label{
    display: flex;
    gap: 0.2rem;
    padding: 0.5rem;
}
.concluida{
    text-decoration: line-through;
    color: gray;
    opacity: 0.7;
}