* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  height: 100%;
  background-color: rgb(224, 142, 26);
}

h1 {
  font-size: 3rem;
  font-weight: 50;
  margin: 1rem 0 3rem;
  text-align: center;
  color: rgb(255, 255, 255);
  font-family: "Bebas Neue", cursive;
}

.heading {
  font-weight: 800;
  color: rgb(23, 235, 48);
}

.input_div {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.input_div .input {
  padding: 0.5rem 1rem;
  height: 50px;
  outline: none;
  border: none;
  background-color: #ffff;
  width: 450px;
  font-size: 1.15rem;
  margin: 0.25rem;
  border-radius: 25px;
}

.addButton {
  height: 50px;
  width: 50px;
  border-radius: 25px;
  outline: none;
  border: none;
  background-color: white;
  color: #fff;
  margin: 0.25rem;
  background-color: rgba(25, 190, 185, 0.485);
  cursor: pointer;
}

.addButton:hover {
  opacity: 0.7;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.item {
  padding: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 4px solid #fff;
}

.item_input {
  background: none;
  outline: none;
  color: rgb(255, 255, 255);
  border: none;
  width: 350px;
  font-size: 1.4rem;
}

.editButton {
  font-size: 1.4rem;
  margin: 0 0.5rem;
  font-family: "Bebas Neue", cursive;
  background: none;
  outline: none;
  color: #383cc1;
  border: none;
  cursor: pointer;
}

.deleteButton {
  font-size: 1.4rem;
  margin: 0 0.5rem;
  font-family: "Bebas Neue", cursive;
  background: none;
  outline: none;
  color: rgb(223, 16, 16);
  border: none;
  cursor: pointer;
}

.todo{
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-bottom: 2px solid #fff;
  padding: 3px;
  width: 450px;;
}
.todo h2{
  color: #fff;
  font-size: 35px;
}
.todo button{
  font-size: 25px;
  border: none;
  background: transparent;
}
.todo button.edit{
  color: blue;
}
.todo button.delete{
  color: red;
}