*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  font-family: monospace;
  font-size: 16px;
  margin: 0 auto;
  width: 300px;
  background-color: rgba(255, 105, 180, 0.224);
}

header {
  margin-top: 1rem;
}

h1 {
  margin: 0;
  padding-bottom: 5px;
  background-color: black;
  font-size: 3rem;
  text-shadow: 3px 3px hotpink;
}

body {
  text-align: center;
}

form {
  margin-top: 1rem;
}

#all {
  margin-top: 3px;
}

label input {
  margin-left: 0.5rem;
}

li input {
  margin-right: 0.3rem;
  margin-left: -20px;
  margin-top: 5px;
}

ul#todo-list {
  text-align: left;
}

button {
  background-color: white;
  box-shadow: 3px 2px 0px 0px hotpink;
  color: black;
  border-color: black;
  border-radius: 5px;
}

button:hover {
  background-color: rgba(255, 105, 180, 0.091);
}

ul,
#input-field,
form,
header {
  background-color: rgba(255, 105, 180, 0.091);
  box-shadow: 3px 2px 0px 0px hotpink;
  color: black;
  border: solid 2px;
  border-color: black;
  border-radius: 5px;
}

#input-field {
  background-color: white;
}
