@font-face{
    src:url(GoogleSans-VariableFont_GRAD,opsz,wght.ttf);
    font-family:google-sans;
}  
*{
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body{
   font-family: google-sans; 
   margin: 0;
   display: flex;
   align-items: center;
   justify-content: center;
   background-color: hsl(0, 1%, 14%);
}
h1{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}
.fundo{
    background-color: hsl(0, 4%, 5%);
    min-height: 500px;
    width: 700px;
    padding: 10px 50px;
    margin-top: 35px;
    border-radius: 30px;
}
.card{
    display: flex;
    align-items: center;
    justify-content: center;    
}
.container-input{
    padding: 8px 12px;
    background-color: rgba(30, 28, 28, 0.735);
    border-radius: 18px;
    outline: none;
    margin-bottom: 40px;
}
.fa-solid.fa-pen{
    color: white;
    font-size:1.1em;
    cursor: pointer;
}
.textoInput{
    background-color: transparent;
    border: none;
    color: white;
    font-size: 1.2em;
}
.textoInput:focus-visible {
    outline: none;
}
.card-checkbox{
    display: flex;
    flex-direction: column;

}
.container-checkbox{
    display: flex;
    align-items: center;
    background-color:  rgba(30, 28, 28, 0.735);
    padding: 6px 10px;
    border-radius: 10px;
    margin-bottom: 8px
}
.checkbox{
    cursor: pointer;
    height: 25px;
    width: 25px;
    vertical-align: middle;
    margin-right: 20px;
    margin-left: 15px;
}
.textoToDo{
    color: white;
    font-size: 1.2em;
    max-width: 450px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
button{
    background-color: hsl(0, 100%, 70%);
    border: 3px solid hsl(0, 100%, 50%);
    color: hsl(0, 98%, 43%);
    font-size: 1.1em;
    cursor: pointer;
    vertical-align: middle;
    margin-left: auto; 
    position: relative;
}