@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300&display=swap');

* {
    box-sizing: border-box;
}

body {
    background-color: #c0d5dc;
    display: flex;
    align-items: center;
    flex-direction: column;
    font-family: "Poppins", sans-serif;
    margin: 0;
    min-height: 50vh;
}

h1 {
    color: #891f1f;
    text-align: center;
    size: 10rem;
    opacity: 0.4;
}

form {
    max-width: 100%;
    width: 400px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.input{
    border: none;
    font-size: 2rem;
    padding: 1rem 2rem;
    display: block;
    width: 100%;
}

.input::placeholder{
    color: #b5b5b5;
}
.todos{
    background-color: #fff;
    padding: 0;
    margin:0;
    list-style-type: none;
}

.todos li{
    border-top: 1px solid #e5e5e5;
    font-size: 1rem;
    padding: 1rem 3rem;
}

.todos li.completed{
    color:#b6b6b6;
    text-decoration: line-through;
}

small{
    margin-top: 3rem;
    color: #b6b6b6;
}