body {
    background: linear-gradient(106.5deg, rgba(253, 216, 188, 0.91) 23%, rgba(173, 124, 193, 0.8) 93%);
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 800px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #1c4336;
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.instructions {
    width: 80%;
    font-size: 15px;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    color: gray;
    font-style: italic;
    text-align: center;
    transition: all 0.3s ease;
}

.instructions:focus {
    outline: none;
    border: 1px solid rgba(28, 67, 54, 0.3);
    box-shadow: 0 0 5px rgba(28, 67, 54, 0.1);
    font-style: normal;
    color: black;
}

button {
    background-color: #320536;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

button:hover {
    transform: scale(1.05);
}



.instructions {
    width: 80%;
    font-size: 15px;
    padding: 15px;
    border-radius: 12px;
    border: none;
    color:gray;
    font-style: italic;
  text-align: center;
    
}
.poem {
    display: none;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    line-height: 1.6;
}

.poem.show {
    display: block;
}

footer {
    text-align: center;
    margin-top: 40px;
}

.footer-link {
    color: #1c4336;
    text-decoration: none;
    font-weight: 500;
    margin: 0 5px;
}

.footer-link:hover {
    text-decoration: underline;
}
