@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&family=Roboto:wght@300&display=swap');
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
body{
    font-family:"poppins",sans-serif;
}
 a{
    text-decoration: none;

    color: white;
  
    
}
.header{
    position: relative;
    min-height: 60vh;
    background: url(bg.jpeg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
}
.container{
    max-width: 1200px;
    margin: auto;
    width: 90%;
    

}
.nav{
    min-height: 8vh;
    display: flex;
    justify-content: space-between;

}
.nav-items{
    display: flex;
    width: 40%;
    justify-content: space-around;
    align-items: center;
    list-style-type: none;
}
.headline{
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}
.btn{
    display: inline-block;
    outline: none;
    border: none;
    cursor: pointer;
}
.btn-headline{
    padding: 1rem 2rem;
    font-size: 1rem;
    margin-top: 1rem;
    font-weight: 600;
}
/* .bg-dark{
  background-color: black;
  color: #fff; */

.section-todo{
    margin-top: 5rem;
    text-align: center;
}
.todo-list{
    text-align: left;
    font-size: 1.2rem;
    list-style-type: none;
   
}
.todo-list li{
    padding: 0.7rem;
    background-color: #333;
    color: cyan;
    text-transform: capitalize;
    margin-top: 1rem;
    text-transform: capitalize;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.todo-btn{
    
    padding: 0.1rem 1rem;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;


}
.form-todo{
   
    min-height: 5vh;
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;


}
 .form-todo input{
    min-height: 100%;
} 
.form-todo input[type="text"]{
    width: 80%;
    padding: 0.8rem;
    font-size: 1rem;
    font-weight:bolder
}
.form-todo input[type="submit"]{
    width: 20%;
    background-color: rgb(44,55,63);
    color: #fff;
    font-weight: bold;
}
.section-signup {
    margin: 5rem auto;
    text-align: center;
    background:rgb(206, 199, 199) ;
    border-radius: 10px;
    padding: 1rem;
    }
.signupform {
   max-width: 800px;
   width: 90%;
   margin: auto;
   text-align: left;
}

.signupform label{
    display: block;
}
.signupform input{
    display:block ;
    width: 100%;
    padding: 0.5rem;

}
.form-group{
    margin-top: 1rem;
}
.signupform textarea{
    width: 100%;
}
.signup-btn{
    background:rgb(44,55,63);
    color: #fff;
    padding: 1rem 2rem;
    display: block;
    margin: auto;
    margin-top:1rem ;
    font-weight: bolder;
    
}
