body {
  height: 100vh;
  background: linear-gradient(to right, #7ca7bd, #ccc91a);
  font-family: 'Helvetica', arial, sans-serif;
}

.container {
  background: rgb(219, 191, 130);
  max-width: 600px;
  width: 100%;
  display: table;
  margin: 0 auto;
  margin-top: 40px;
  border: 1px solid #cfcbcc;
  box-shadow:
    0 2.8px 2.2px rgba(0, 0, 0, 0.034),
    0 6.7px 5.3px rgba(0, 0, 0, 0.048),
    0 12.5px 10px rgba(0, 0, 0, 0.06),
    0 22.3px 17.9px rgba(0, 0, 0, 0.072),
    0 41.8px 33.4px rgba(0, 0, 0, 0.086),
    0 100px 80px rgba(0, 0, 0, 0.12);
}

input {
  border: none;
  display: block;
  width: 98.4%;
  line-height: 1.5;
  padding: 8px 0 8px 10px;
  border-bottom: 1px solid #ebd300;
  outline: 0;
  background: #e9e779;
}

h1,
h2 {
  text-align: center;
  margin-bottom: 0px;
  line-height: 1;
}

h2 {
  color: gray;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  color: #899098;
  font-weight: 400;
  border-bottom: 1px solid #cfcbcc;
  line-height: 1.5;
  padding: 8px 0;
}

li:before {
  content: "\25A1";
  padding: 10px 10px;
  font-size: 20px;
}

li:hover {
  text-decoration: line-through;
  cursor: pointer;
}

li:last-child {
  border-bottom: none;
}


.checked {
  color: green;
}

.checked:before {
  content: "\2713";
  padding: 10px 10px;
  font-size: 20px;
}

.checked:hover {
  text-decoration: none;
}

.checked:after {
  content: "(remove)";
  color: tomato;
  text-align: right;
}

a {
  background-color: #4CAF50;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}

.homeLink{
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}