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

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

body{
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.1rem;
}

.header{
    min-height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.15),rgba(0,0,0,0.15)),url("./bg.jpg");
    background-position: center;
    background-repeat: no repeat;
    background-size: cover;
    color: white;
    position: relative;
}
a{
    text-decoration: none;
    color: white;
}
.container{
    max-width: 1200px;
    width: 93%;
    margin: auto;
}
.nav{
    min-height: 8vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-items{
    list-style-type: none;
    width: 40%;
    display: flex;
    justify-content: space-between;
}
.headline{
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.btn{
    display: inline-block;
    outline: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    border-radius: 0.2rem;
    transition: all 0.1ms;
}
.btn:hover{
    box-shadow: black;
}
.btn-headline{
    margin-top: 0.8rem;
    padding: 0.5rem 1.2rem;
    font-weight: 400;
}



.section-todo{
    text-align: center;
}
.section-todo h2{
    margin: 1rem;
}
.form-todo{
    min-height: 5.5vh;
    display: flex;
    justify-content: space-between;
}
.form-todo input{
    min-height: 100%;
}
.form-todo input[type="text"]{
    font-size: 1.1rem;
    padding: 0.8rem;
    font-weight: 500;
    width: 79%;
}
.form-todo input[type="submit"]{
    width: 20%;
    background: #051920;
    color: white;
}

.todo-list{
    font-size: 1.1rem;
    list-style-type: none;
}
.todo-list li{
    text-align: left;
    background: #444;
    color: white;
    text-transform: uppercase;
    padding: 0.5rem;
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.todo-btn{
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
}
.signup-section{
    margin: 7rem auto;
    padding: 1rem;
    background-color: rgba(240, 240, 240, 0.945);
    text-align: center;
    min-height: 95vh;
}
.signup-form{
    max-width: 80%;
    width: 95%;
    margin: auto;
}
.form-group{
    margin-top: 1rem;
    text-align: left;
}
.form-group input,textarea{
    width: 100%;
    display: block;
    padding: 0.35rem;
    font-size: 1.1rem;
    border-radius: 0.2rem;
}
.form-group label{
    display: block;
    font-weight: 500;
}
.signup-btn{
    background: rgb(44,55,63);
    color: white;
    padding: 1rem 2rem;
    display: block;
    margin: 1rem auto;
}