body {
  font-family: "Roboto", serif;
  background: #F5F1FE;
}

.container {
  padding: 100px 0;
}

h1 {
  text-align: center;
}

p {
  line-height: 1.5;
  font-size: small;
}

form p {
  color: #757575;
}

form {
  border: blue 1px;
  border-radius: 8px;
  width: 60%;
  margin: auto;
  background: #fff;
  padding: 30px 3%;
  box-shadow: 2px 2px 2px 1px rgba(212, 210, 210, 0.2);
}

.inputText {
  width: 72%;
  border: 1px solid #c6c5c8;
  border-radius: 50px;
  padding: 17px 15px;
  font-size: 14px;
}
.inputText:focus{
  outline: none;
}
.submit {
  width: 18%;
  border: none;
  background: #885df1;
  color: whitesmoke;
  border-radius: 50px;
  padding: 17px 0;
  margin-left: 5px;
  cursor: pointer;
}
@media (max-width: 710px){
  .inputText{
    width: 60%;
  }
  .submit{
    width: 22%;
  }
}

#writePoem{
  background: #fff;
  border-left: 2px solid #7693f6;
  width: 60%;
  margin: auto;
  margin-top: 20px;
  padding: 20px 3%;
  font-size: medium;
  background: #fff;
}
.hidden{
  display: none;
}

@keyframes blink {
  to {
    visibility: hidden;
  }
}@-webkit-keyframes blink{
  to{
    visibility: hidden;
  }
}
.blink {
  animation: blink 1s steps(5, start) infinite;
}

a {
  color: #885df1;
  text-decoration: none;
}

footer {
  width: 60%;
  margin: auto;
}

