body {
    background-color: #FAECEc;
    color: #5B5E8B;
    display: block;
    font-family: "Winky Rough", sans-serif;
}

.container {
    display: block;
    margin: 0 auto;
    max-width: 800px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

form {
    padding: 1px;
    border-radius: 10px;
    display: flex;
    font-family: "Shadows Into Light", cursive;
}

.hint {
   line-height: 1.5;
   margin-top: 5px;
    margin-left: 50px;
    font-size: 12px;
    color: #5B5E8B;
    opacity: 0.8;
}

.form-input {
    padding: 16px;
    border: 1px solid rgba(39, 33, 66, .5);
    width: 80%;
    font-size: 17px;
    line-height: 20px;
    color: #c46b80;
    border-radius: 10px;
    background: #faecec;
    font-family: "Winky Rough", sans-serif;
}

.submit-button {
    margin-left: 10px;
    background: #f03e7b;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px 25px;
    font-size: 15px;
    font-family: "Winky Rough", sans-serif;
}

.poem {
    text-align: center;
    font-size: 15px;
    padding: 20px;
    line-height: 25px;
    font-family: "Shadows Into Light", cursive;
    font-size: 29px;
    line-height: 50px;
    font-weight: 800;
}

input:focus {
    outline: none;
    border: 2px solid #F03E7B;
    box-shadow: 0 0 5px #F03E7B;
}


footer {
    color: #b38d95;
    line-height: 75px;
    text-align: center;
    font-size: 13px;
}


a {
    color: #F03E7B;
}

h1 {
    text-align: center;
    font-family: "pacifico", cursive;
    font-weight: 800;
    font-size: 40px;
    margin: 30px;
}

.form-container {
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
    padding: 30px;
}

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


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