#poetry {
	margin-left: 30px;
	background: black;
	color: white;
}

ul {
	list-style-type: square;
}

h3 {
	font-size: 1.5em;
}

table {
	width:100%;
}
table, td {
	border: 1px solid black;
	border-collapse: collapse;
}
th, td {
	padding: 15px;
	text-align: left;
}
table tr:nth-child(even) {
	background-color: #eee;
	color: black;
}
table tr:nth-child(odd) {
 background-color: #fff;
 color: black;
}
table th {
	border: 1px solid black;
	background-color: rgb(255,255,240);
	color: black;
	font-weight: bolder;
}
p.error {
	
	height: 100%;
	height: 50vh; /* Full viewport height */

	display: flex;
	justify-content: center;  /* horizontal centering */
	align-items: center;  
	
	display: flex;
	background-color: #f8d7da; /* Light red shade */
	color: #721c24;            /* Optional: dark red text for contrast */
	padding: 0.5em;            /* Optional: adds spacing around text */
	border-radius: 10px;        /* Optional: softens the corners */
	margin: 10px;
	
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%)
 
}

#siteseal {
	text-align: right;
	padding: 1rem;
}