@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: "Fira Sans", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-image: radial-gradient(circle, white, rgb(255, 230, 233), lightpink);
}
.container {
    text-align: center;
    background-color: #ffe4de;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(241, 119, 89, 0.235);
    width: 300px;
    max-width: 600px;
    border: 1px solid #f7869c;
}
h1 {
    color: #ec5862;
    margin: 0px;
    padding: 0px;
}
#subtexto {
    color: #ec5862ac;
    font-weight: 500;
    font-style: italic;
}
p {
    color: #ec5862b6;
    font-size: 1.1em;
    margin: 20px;
    font-weight: 500;
}
#enviar {
    background-color: #ff5e7ed8;
    border-radius: 10px;
    border-color: #f7869c ;
    color: #ffebed;
    outline: none;
    cursor: pointer;
    padding: 8px;
    border: none;
}
#enviar:hover {
    background-color: #ff5e7ed8;
    box-shadow: 0 0 10px #ff7f91;
}
#tarefa { 
    background-color: #fec7d4;
    border-color: #ffb4a2;
    border-color: #e5989b;
    outline: none;
    border: none;
    padding: 8px;
    border-radius: 5px;
    color: #ed7f83;
    margin-bottom: 10px;
}
#tarefa::placeholder {
    color: #e5989b;
}
#tarefa:focus {
    box-shadow: 0 0 10px #ff7f91;
}
ul {
    list-style: none;
    padding: 0;
}
li {
    background-color: #ffa3b4;
    overflow-wrap: break-word;
    border-radius: 10px;
    padding: 6px;
    margin: 6px;
    color: #f76469;
    box-shadow: 0 0 5px #ffa9ae;
    height: 80;
}
button.remover {
    background-color: #A34743;
    color: #F4F0EA;
    padding: 5px 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.6em;
    margin-left: 5px;
    transition: background-color 0.3s ease;
}
button.remover:hover {
    background-color: #60041A;
}
button.editar {
    background-color: #643d31;
    color: #F4F0EA;
    padding: 5px 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.6em;
    margin-left: 5px;
    transition: background-color 0.3s ease;
}
button.editar:hover {
    background-color: #744d41;
}

#botao_lista {
    background-color: #f9335bd8;
    border-radius: 10px;
    border-color: #f7869c ;
    color: #ffebed;
    outline: none;
    cursor: pointer;
    padding: 8px;
    border: none;
}

#botao_lista:hover {
    background-color: #ff5e7ed8;
    box-shadow: 0 0 10px #ff7f91;
}
