* {
  outline: none;
  height: auto;
  box-sizing: border-box;
  -webkit-tap-highlight-color: none;
}

body {
  background-color: #2b2e43;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 300px;
}

.title {
  margin-top: 50px;
  color: white;
  font-size: 30px;
  font-weight: bold;
}

.title-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bar {
  height: 3px;
  background-color: rgb(35, 155, 45);
  width: 200px;
  margin: 10px 0 20px 0;
}

.input {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.input .input-box {
  width: 100%;
  border-radius: 5px;
  padding: 8px 0;
  background-color: white;
  border: none;
}

input {
  width: 100%;
  border: none;
}

.input input::placeholder {
  text-align: center;
  width: 100%;
}

.button {
  margin-top: 20px;
  width: 100%;
}

.button-add {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: transparent;
  background-color: rgb(35, 155, 45);
  color: white;
  cursor: pointer;
}

.list-style {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
}

.newLi {
  text-align: center;
  color: white;
  background-color: #3e415a;
  border-radius: 5px;
  width: 300px;
  padding: 8px;
  cursor: pointer;
}

.newLi:hover {
  background-color: rgb(124, 52, 52);
}

@media (max-width: 600px) {
  .newLi:hover {
    background-color: transparent;
  }
}
