html,
body {
  margin: 0;
  padding: 0;
  font-family: "Redressed", cursive;
}

body {
  background-color: lightgray;
}

#header {
  border: 1px solid black;
  width: 80%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: #900;
  color: white;
}

#city-form {
  padding: 10px;
}

#todo-list {
  border: 1px solid black;
  width: 500px;
  padding: 10px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 100px;
  background-color: darkorange;
  box-shadow: 5px 5px 10px darkgrey;
}

#todo-items {
  width: auto;
  margin-left: auto;
  margin-right: auto;
}

.todo-item {
  list-style-type: none;
}

#todo-header {
  display: flex;
  justify-content: stretch;
}

#todo-header h2 {
  width: 100%;
  /* background-color: darkmagenta; */
}

li {
  border: 1px solid black;
  margin: 10px;
  padding: 10px;
  background-color: whitesmoke;
}

li:hover {
  background-color: lightgray;
}

.selected {
  color: gray;
  text-decoration: line-through;
}
