* {
    box-sizing: border-box;
}

body {
    font: 14px 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #eee;
}

h1 {
    text-align: center;
    font-size: 5rem;
    color: rgb(230, 177, 177);
    margin: 5px;
    padding: 5px;
}

.input {
    font: 1.5rem 'Helvetica Neue', sans-serif;
    background-color: #fff;
    height: 5vh;
    width: 500px;
    height: 75px;
    padding: 1rem 2rem;
    border-style: none;
}

.input:focus {
    outline: none;
}

.input::placeholder {
    margin: 0;
    color: rgb(230, 177, 177);
    font-style:italic;
}

form {
    font: 14px 'Helvetica Neue', sans-serif;
    box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.32);
}

.todos {
    list-style: none;
    padding: 0;
    margin: 0;
    
}

.todos li {
    border-top: 1px solid #e5e5e5;
    cursor: pointer;
    font-size: 1.5rem;
    padding: 1rem 2rem;
    background-color: #fff;
}

.todos li:hover {
    color: rgb(209, 150, 150);
}

.todos li.completed {
    text-decoration: line-through;
    color: #eee;
}

small {
    font: .7rem 'Helvetica Neue', sans-serif;
    text-align: center;
}

small a{
    color: rgb(230, 177, 177);
    font-style: none;
    text-decoration: none;
}

small a:hover {
    text-decoration: underline;
}