@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap");

* {
    box-sizing: border-box;
}

body {
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", sans-serif;
    margin: 0 0 3rem;
    min-height: 100vh;
}

main {
    width: 600px;
    box-shadow: 0 4px 5px rgba(0, 0, 0, .2);
}

input {
    border: none;
    width: 100%;
    padding: 1.5rem;
    font-size: 24px;
    font-family: inherit;
    font-weight: inherit;
    line-height: 1.4em;
}

input::placeholder {
    padding: 2rem;
    font-style: italic;
	font-weight: 300;
	color: #e6e6e6;
}

.todo {
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem;
    border-top: 1px solid lightgray;
}

.strikethrough {
    text-decoration: line-through;
}

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 45px;
}