@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato';
    font-weight: bold;
}

body {
    display: flex;
    align-items: center;
    justify-content: space-around;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-image: url('Listadetarefas.svg');
}

html {
    height: 100%;
}

main {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

h1 {
    color: black;
}

label {
    color: black;
    font-size: larger;
}

#inputTarefa {
    width: 130px;
    height: 38px;
    font-size: medium;
    border-radius: 50px;
    text-align: center;
    border: solid;
    border-color: black;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1)
}



.checkbox{
    width: 45px;
    height: 15px;
}

.checkbox:checked + span{
    text-decoration: line-through;
}

.botoes {
    display: flex;
    flex-direction: row;
    gap: 5px;
}

button {
    background-color: black;
    color: white;
    display: flex;
    align-items: center;
    border-radius: 50px;
    width: 150px;
    height: 46px;
    font-size: medium;
    justify-content: space-around;
    border: none;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1)
}

button:hover{
    cursor: pointer;
    background-color: white;
    color: black;
    border: solid;
    border-color: black;
}

li {
    color: black;
    display: flex;
    align-items: center;
}

.escondido {
    display: none;
}