body {
    margin: 0px;
    font-family: 'DM Sans';
    padding: 0px;
    height: 100vh;
    width: 100vw;
    background-image:url(poem-generator.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow-x: hidden;
}

h1 {
    text-align: center;
    font-weight: 800;
    font-size: 36px;
    line-height: 1.5;
}

.container {
    margin: 120px auto;
    background-color: rgb(215, 239, 247);
    max-width: 600px;
    padding: 15px 30px;
    border-radius: 25px;
}

.generating {
  animation: blink-animation 1s steps(5, start) infinite;
  -webkit-animation: blink-animation 1s steps(5, start) infinite;
}
@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}

header {
    margin-bottom: 30px;
};

.form-wrapper {
    background-color: azure;
    padding: 15px 20px;
    border-radius:10px;
    margin-bottom: 30px;
}

.hint {
    line-height: 1.5;
    margin-top: 5px;
    font-size: 14px;
    margin-left: 10px;
    opacity: 0.8;
}

.hidden {
    display: none;
}

form {
    display: flex;
}

.prompt {
    padding: 16px;
    border: 1px solid grey;
    width: 70%;
    font-size: 16px;
    border-radius: 50px;
    line-height: 20px;
    color: black;

}

a {
    color: #cb86ae;
}

.submit-prompt {
    margin-left: 5px;
    box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.3);
    background-color: #cb86ae;
    color: white;
    border: none;
    width: 100px;
    font-size: 16px;
    border-radius: 50px;
    padding: 15px 25px;

}

.poem {
    font-size: 16px;
    background-color:rgba(242, 240, 248, 0.3);
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 20px;
    line-height: 2;
    border-left: 3px solid black;
    box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.4);
    border-radius: 10px;
}

footer {
    text-align:center;
    font-size: 13px;
    margin-top: 30px;

}
