@charset "UTF-8";

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

:root {
    --cor-background: #3c3c3c;
    --cor-secundaria: #0c0c0c;
}

html {
    font-size: 62.5%;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    height: 100vh;
    font-size: 1.6rem;
    background: url(../imagens/ToDoList-background-1280px.jpg) center center no-repeat fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-color: #3c3c3c;
}

body h1 {
    margin: 20px 0;
    font-size: 3rem;
    color: #ccc;
}

body img {
    max-width: 600px;
}

#main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90vw;
    margin-top: 40px;
}

#header {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    width: 90vw;
}

#header input {
    height: 50px;
    width: 80%;
    padding-left: 10px;
    font-size: 2rem;
}

#btn-add {
    width: 20%;
    cursor: pointer;
    font-weight: bold;
    border: none;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    color: #fff;
    background-color: var(--cor-secundaria);
}

.item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 90vw;
    margin-bottom: 12px;
    box-shadow: 0 0 7px #777777;
    border: 1px solid #000;
    cursor: pointer;
    background-color: #fff;
}

.item .circle i {
    display: none;
}

.item .circle {
    background-color: #fff;
}

.item.clicado {
    background-color: #bef3c6;
}

.item.clicado .nomeTarefa {
    text-decoration: line-through;
    color: #464646;
}

.iconeChecagem {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 12%;
    font-size: 2.1rem;
    text-align: center;
}

.nomeTarefa {
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    height: 50px;
    width: 78%;
    padding-left: 5px;
    font-size: 2rem;
    font-weight: bold;
    border-inline: 1px solid #000;
}

.btnExcluir {
    height: 50px;
    width: 10%;
}

.circle {
    height: 30px;
    width: 30px;
    border: 2px solid #777777;
    border-radius: 50%;
    cursor: pointer;
    background-color: #00bb00;
}

.item.clicado .circle {
    height: 30px;
    width: 30px;
    border: 2px solid #777777;
    border-radius: 50%;
    cursor: pointer;
    background-color: #00bb00;
}

.item.clicado .circle i {
    display: block;
    position: relative;
    top: 2px;
    color: #fff;
}

.excluirTarefa {
    min-height: 50px;
    width: 100%;
    font-size: 1.2rem;
    cursor: pointer;
    color: #fff;
    border: none;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    background-color: #777777;
}

.btnExcluir i {
    font-size: 2.1rem;
}