body {
  display: flex;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  justify-content: center;
  align-items: center;
  background-color: black;
  color: rgb(97, 97, 97);
  height: 100vh;
}
form {
  max-height: 30rem;
  width: 20rem;
  background-color: white;
  color: black;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  margin: 20px;
  padding-bottom: 20px;
}
img{
  display: block;
  max-width: 100%;
  height: auto;
}
.heading {
  text-align: center;
  animation: multeCor 5s infinite alternate linear;
  color: white;
  margin: 0;
  margin-bottom: 30px;
  padding: 10px 0;
  width: 100%;
}
#website {
  width: 80%;
  height: 30px;
  outline: none;
  border: none;
  background: gainsboro;
  padding: 5px 10px;
  margin-bottom: 20px;
}
input {
  font-family: poppins;
  transition: 0.3s;
  border-radius: 5px;
  border: none;
  outline: none;
}
input::placeholder {
  text-align: center;
}
.generateBtn {
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  outline: none;
  background: black;
  color: white;
  cursor: pointer;
  margin: 20px;
  font-size: 1rem;
}

@keyframes multeCor {
  0% {
    background: #5c05c0;
  }
  25% {
    background: #9815cc;
  }
  50% {
    background: #2f8604;
  }
  75% {
    background: #bd8502;
  }
  100% {
    background: #ff9b85;
  }
}
