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

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

div {
  width: 70vh;
  color: white;
  padding: 12px;
  border-radius: 12px;
  margin: auto;
  text-align: center;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 24px auto;
}

li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  border: 1px solid black;
  background-color: white;
  border-radius: 25px;
  margin: 5px;
  color: black;
  height: 40px;
}

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

h2 {
  margin-right: 24px;
  font-family: "Bebas Neue", cursive;
}

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;
}

#add-button {
  font-size: 20px;
  padding: 0.5rem 0.8rem;
  border-radius: 25px;
  background-color: black;
  transition: 0.5s;
  cursor: pointer;
  color: white;
}

#add-button:disabled {
  background-color: revert;
  cursor: default;
}

.wrapper {
  width: 70vw;
  margin: auto;
  text-align: center;
  background: grey;
  color: white;
}

.delete-button {
  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;
}

.delete-button:hover {
  border-color: white;
  transform: scale(1.2);
}