.container {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  font-family: Arial, sans-serif;
}

h1 {
  font-size: 36px;
  margin-top: 50px;
}

h2 {
  font-size: 24px;
  margin-top: 50px;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  font-size: 18px;
  margin-top: 20px;
  padding: 20px;
  background-color: #f8f8f8;
  border-radius: 5px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-in-out;
}

li:hover {
  transform: translateY(-5px);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

label {
  font-size: 24px;
}

textarea {
  width: 100%;
  padding: 10px;
  font-size: 18px;
  margin-top: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

input[type=submit] {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  margin-top: 10px;
  transition: all 0.2s ease-in-out;
}

input[type=submit]:hover {
  background-color: #3e8e41;
}
