h1::before {
  content: " ";
  display: block;
  height: 2px;
  width: 300px;
  position: absolute;
  background-color: #800020;
}

li::after {
  content: " *";
  color: purple;
  font-size: 30px;
}
li:nth-child(odd) {
  background-color: #9090e5;
}
li:first-child {
  color: #e5b590;
}

li:last-child {
  color: rgb(194, 36, 186);
}

li:not(:nth-child(3)) {
  font-size: 30px;
}

button {
  background-color: #411c82;
  color: white;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  padding: 9px 20px;
  font-size: 16px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
  background-color: #490b48;
  transform: scale(1.05);
}

section {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid #300f0f;
}

section div {
  padding: 10px;
  margin: 10px;
  background-color: #e1e0e3;
}
