/* Making the whole page background black */
body {
  background-color: #000; /* black */
  color: white; /* white text */
  margin: 0;
  height: 100vh; /* full viewport height */
  display: flex;
  justify-content: center; /* horizontal center */
  align-items: center;     /* vertical center */
  font-family: Arial, sans-serif;
}

/* Container to hold your content nicely */
.container {
  text-align: center;
  width: 350px;
}

/* Inputing box styling */
input#taskInput {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: none;
  margin-top: 15px;
  font-size: 16px;
}

/* Buttons styling */
.buttons {
  margin-top: 15px;
}

button {
  padding: 10px 15px;
  margin: 5px;
  background-color: #ff4c60;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #ff1c36;
}

/* Task list styling */
ul#taskList {
  list-style-type: none;
  padding: 0;
  margin-top: 20px;
}

ul#taskList li {
  background-color: #222;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
}
