body {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
}

input[type=text] {
    padding: 3px 10px;
    width: 93%;
    font-size: 18px;
    position: relative;
}

#topInput {
    width: 74%;
}

label {
    cursor: pointer;
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
ul li {
    padding: 6px 4px 6px 20px;
    margin: 2px;
    background-color: #adb6c0;
}

.completed {text-decoration: line-through;}

.edit {
    position: relative;
    background-color: #adb6c0;
    padding: 6px 6px;
}

.edit:hover {
    background-color: #adb6c0;
}

.close {
    background-color: #adb6c0;
    position: absolute;
    right: 0;
    margin-right: 16px;
    padding: 6px 14px;
    border-radius: 0px;
}

.close:hover {
    background-color: #f44336;
    color: white;
}

button {
  appearance: none;
  background-color: #dadbdc;
  border: none;
  border-radius: 6px;
  box-sizing: border-box;
  color: #24292E;
  cursor: pointer;
  display: inline-block;

  font-family: -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 14px;
  font-weight: 500;

  line-height: 20px;
  list-style: none;
  padding: 6px 16px;
  position: relative;
  transition: background-color 0.2s cubic-bezier(0.3, 0, 0.5, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
  word-wrap: break-word;
}

button:hover {
  background-color: #c3c4c6;
  text-decoration: none;
  transition-duration: 0.1s;
}

button:disabled {
  background-color: #FAFBFC;
  border-color: rgba(27, 31, 35, 0.15);
  color: #959DA5;
  cursor: default;
}

button:active {
  background-color: #EDEFF2;
  box-shadow: rgba(225, 228, 232, 0.2) 0 1px 0 inset;
  transition: none 0s;
}

button:focus {
  outline: 1px transparent;
}

button:before {
  display: none;
}

button:-webkit-details-marker {
  display: none;
}



