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

*::after,
*::before {
  box-sizing: border-box;
}

body {
  background-color: rgb(197, 255, 255);
  padding: 1rem 0;
}

.redux {
  width: 500px;
  margin: auto;
}
.redux-content {
  background-color: #fff;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 10px;
}
.redux-content:last-of-type {
  margin-bottom: 0;
}
.redux-content h4 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  padding-bottom: 1rem;
}
.redux-content-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.redux-content-btn button {
  height: 35px;
  padding: 0 20px;
  border: none;
  background: none;
  cursor: pointer;
  color: #fff;
  border-radius: 4px;
}
.redux-content-btn button:first-of-type {
  background-color: #ff0037;
}
.redux-content-btn button:last-of-type {
  background-color: #73da1f;
}
.redux-add {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 1rem;
}
.redux-add button {
  height: 35px;
  padding: 0 20px;
  border: none;
  background: none;
  cursor: pointer;
  color: #fff;
  border-radius: 4px;
}
.redux-add button:first-of-type {
  background-color: #1fdabb;
}
.redux-add button:last-of-type {
  background-color: #ff0037;
}/*# sourceMappingURL=app.css.map */