#todolist{
  list-style-type: none;
  width: 80%;
  margin-top: 30px;
  font-size: 15pt;
}

#todolist .button{
  margin-right: 20px;
}

input{
  margin-bottom: 15px;
  padding: 0 12px;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: rgb(40, 40, 40);
  min-width: 50%;
  height: 40px;
  border: 1px solid rgb(100, 100, 100);
  border-radius: 10px;
}


.todoEntries{
  background-color: rgb(30, 30, 30);
  padding: 8px;
  margin-bottom: 10px;
  border-radius: 10px;
}

.warning{
  color: red;
}

.firstColumn{
  width: 70px;
}

@media(max-width: 500px) {
  #todolist{
    width: 100%;
  }
}