body {
	background-color: rgb(227, 248, 248);
	font-family: Arial, Helvetica, sans-serif;
}

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

header {
	margin-bottom: 30px;
}

h1 {
	text-align: center;
	font-weight: 700;
}

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

form {
	display: flex;
}

.hint {
	line-height: 1.5;
	font-size: 12px;
	margin-top: 7px;
	margin-left: 15px;
	opacity: 0.6;
}

.instructions {
	padding: 10px;
	width: 80%;
	border-radius: 25px;
	border: 1px solid rgb(179, 175, 175);
	font-size: 16px;
}

.submit-button {
	margin-left: 10px;
	background-color: rgb(0, 107, 107);
	color: white;
	border: none;
	border-radius: 25px;
	padding: 14px 24px;
	font-size: 16px;
}

.poem {
	font-size: 16px;
	background-color: white;
	padding: 20px;
	line-height: 2;
	border-left: 3px solid rgb(0, 107, 107);
	box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
}

.hidden {
	display: none;
}

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

a {
	color: rgb(0, 107, 107);
}

.poem i {
	color: rgb(0, 107, 107);
}

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

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