body {
    text-align: center;
    background-color: rgb(190, 163, 128);
    font-family:Arial, Helvetica, sans-serif;
}    
.container {
    margin: 100px auto;
    max-width: 600px;

}
header {
    margin-bottom: 30px;
}

h1 {
   font-weight: 800;
   font-size: 40px;
   line-height: 1.5;
   color: whitesmoke;
}
main {
    font-family: "Edu NSW ACT Cursive", cursive;
    background-color: white;
    box-shadow: 0px 20px 30px rgb(78, 40, 23);
    border-radius: 30px;
    margin-bottom: 30px;
}
form {
    padding: 20px;
    display: flex;
}
.emoji {
    margin-left: 30px;
    display: flex;
}
.instructions {
    padding: 15px;
    border: 1px rgb(173, 158, 136);
    box-shadow: 0px 5px 10px rgb(146, 104, 85);
    width: 80%;
    font-size: 16px;
    border-radius: 50px;
    line-height: 20px;
    color: black;
}
.button {
    margin-left: 10px;
    background-color: rgb(201, 50, 75);
    box-shadow: 0px 5px 10px rgb(146, 104, 85);
    font-size: 16px;
    border-radius: 50px;
    color: rgb(226, 223, 223);
    border: none;
    padding: 14px 24px;
}
.poem {
    font-size: 17px;
    line-height: 2;
}

footer {
    margin-top: 50px;
    text-align: center;
    font-size: 15px;
    color: white;
}

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

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