* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
#parent-content {
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  gap: 10px;
}
h1 {
  font-size: 2.5rem;
  width: 40%;
  color: #349637ff;
}
form {
  border: 5px solid #bdeb95;
  background-color: #349637ff;
  padding: 10px;
  color: white;
  border-radius: 10px;
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
button {
  background-image: linear-gradient(to top, green, #bdeb95);
  width: 150px;
  height: 25px;
}
p {
  border: 5px solid #bdeb95;
  background-color: #349637ff;
  padding: 10px;
  color: white;
  border-radius: 10px;
  width: 40%;
}
