* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  list-style: none;
}

body {
  height: 100vh;
  background: linear-gradient(150deg, rgb(192, 89, 10), rgb(255, 221, 0));
  display: flex;
  align-items: center;
  justify-content: center;
}

header {
  min-height: 100px;
  min-width: 400px;
  width: 40%;

  background: linear-gradient(70deg, rgb(78, 215, 148), rgb(42, 127, 191));
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: -180px;
  border-radius: 30px;
  box-shadow: 0px 0px 5px 1px black;
  padding: 30px 80px 60px;
}

h1 {
  text-transform: uppercase;
  color: rgb(68, 67, 67);
  -webkit-text-stroke: 1.5px #cd854e;
  text-align: center;
}

form {
  margin: auto;
  width: 70%;
}

input {
  background: linear-gradient(150deg, rgb(192, 89, 10), rgb(255, 221, 0));
  border: 2px solid rgb(255, 217, 0);
  box-shadow: 0px 0px 5px 1px black;
  border-radius: 10px;
  padding: 5px;
  margin-bottom: 20px;
  color: black;
  width: 100%;
}

input:focus {
  border: 3px solid rgb(246, 255, 0);
  outline: none;
}

input::placeholder {
  background: linear-gradient(70deg, rgb(78, 215, 148), rgb(42, 127, 191));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

ul {
  transition: 0.3s ease;
  min-width: 80%;
  padding: 10px 20px;
}

li {
  font-size: 0.7rem;
  margin-left: -90px;
  cursor: pointer;
  margin-top: 7px;
}

li:hover:after {
  content: "( ✓ )";
  color: rgb(111, 255, 0);
  margin-left: 5px;
  position: absolute;
}

li::before {
  content: "★ ";
  color: orange;
}

li.clicked::before {
  content: "✓";
  color: rgb(0, 255, 115);
  margin-left: 2px;
  margin-right: 5px;
}

li.clicked:hover:after {
  color: rgb(225, 36, 36);
  content: "( X )";
}
