body {
    background-color: rgb(203, 203, 245);
}

h1 {
    font-size: 36px;  
    text-align: center;
}

.container {
    max-width: 600px;
    margin: 100px auto;
}

form {
    display: flex;
}

.form-container {
    padding: 30px;
    background-color: white;
    border-radius: 6px;
    margin-bottom: 10px;
}

.hint {
    line-height: 1.5;
    margin-top: 5px;
    opacity: 0.7;
    font-size: 12px;
    margin-left: 10px;

}

.instructions {
    padding: 10px 10px;
    border-radius: 30px;
    width: 80%;
    line-height: 15px;
    margin: 0px 5px;
    border: 1px solid grey;
    font-size: 15px;
}

.submit-button {
    border-radius: 30px;
    background-color: rgb(203, 203, 245);
    line-height: 15px;
    padding: 10px 23px;
    margin: 0px; 
    border: none;
    font-size: 15px;
}

.poem {
    font-size: 18px;
    padding: 20px;
    background-color: white;
    border-radius: 6px;
    line-height: 28px;
    border-left: 3px solid darkviolet;
}

.hidden {
    display: none;
}

footer {
    text-align: center;
    padding: 10px;
    font-size: 14px;
}

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

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