body{
    background-color: white;
    padding: 50px;
}

h1{
    text-align: center;
}

form{

  display: flex;
 
}

footer{
    text-align: center;
}

.container{
  background: #bbe9db; 
  margin: auto;
  width: 50%;
  padding: 60px;
  border-radius: 10px;
}

.search{
    padding: 15px 10px;
    border: 1px solid rgba(39, 33, 66, 0.5);
    width: 80%;
    font-weight: 400;
    font-size: 16px;
    border-radius: 10px;
    line-height: 20px;
    color: #272044;
}

.button{
 margin-left: 10px;
  background: green;
  color: white;
  border: none;
  width: 150px;
  font-size: 16px;
  border-radius: 20px;
  padding: 14px 24px;
}

.result{
  background: rgb(250, 246, 246); 
  margin-top: 25px;
  width: auto;
  padding: 40px 20px;
  border-radius: 10px;
}


.generating {
  animation: blink-animation 1s steps(5, start) infinite;
}

@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}

.motivation{
     animation:	blink-animation 1s steps(5, start) infinite;
    }


@keyframes slideIn {
	from {
		transform: translateX(-100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}