body {
    background-color: #E1E9C9;
    font-family: Garamond, serif;
}

.container {
    margin: 120px auto;
    max-width: 600px;
    border-radius: 10px;
}

h1 {
    font-weight: 800;
    text-align: center;
    font-size: 40px;
    line-height: 1.5;
    color: #EDA35A;
}

header {
    margin-bottom: 30px;
}

.instructions {
    padding: 16px;
    border: 1px solid #FEE8D9;
    width: 80%;
    font-size: 16px;
    border-radius: 30px;
}

a {
    color: #de8b38;
}

.submit-button {
    margin-left: 10px;
    background-color: #FEE8D9;
    color: #EDA35A;
    border: none;
    border-radius: 30px;
    padding: 14px 24px;
    width: 150px;
    font-size: 18px;
    font-weight: 600;
    font-family: Garamond, serif;
    transition-duration: 0.3s;
}

.submit-button:hover {
    background-color: rgba(65, 50, 100, 0.08);
    color: #FEE8D9;

}

.poem {
    font-size: 16px;
    background-color: #CADCAE;
    padding: 20px;
    display: block;
    line-height: 2;
    border-left: 3px solid #EDA35A;
    box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
    border-radius: 5px;
}
.form-container {
    padding: 30px;
    background-color: #CADCAE;
    border-radius: 10px;
    box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
    margin-bottom: 30px;
}
form {
    display: flex;
}

.hint {
    line-height: 1.5;
    margin-top: 10px;
    margin-left: 10px;
    opacity: 0.5;
    font-size: 14px;
}

.hidden {
    display: none;
}

footer {
    text-align: center;
    font-size: 12px;
    margin-top: 30px;
    opacity: 0.8;
}

.blink {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {  
  50% { opacity: 0; }
}