body {
  font-family: Arial;
  background: #1e1e1e;
  color: white;
  margin: 0;
  padding: 20px;
}

.title {
  text-align: center;
  font-family: "Rowdies", sans-serif;
  font-weight: 500;
  font-size: 30px;
  font-style: normal;
}

.board {
  display: flex;
  gap: 20px;
}

.list {
  width: 250px;
  padding: 10px;
  border-radius: 8px;
}
.headings {
  font-family: "Rowdies", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.tasks {
  min-height: 200px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-family: "Courgette", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
}

.task {
  background: rgba(255, 255, 255, 0.25);
  padding: 8px;
  margin-bottom: 8px;
  border-radius: 6px;
  cursor: grab;
  display: flex;
  justify-content: space-between;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

.delete {
  background: red;
  border: none;
  color: white;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 4px;
}

button {
  margin-top: 10px;
  padding: 6px;
  cursor: pointer;
}

#addColumn {
  margin-top: 20px;
  padding: 10px 15px;
  cursor: pointer;
  background: #0079bf;
  color: white;
  border: none;
  border-radius: 6px;
}
