/* Colors 
 * ce8498	Wild Rose	li
 * e9adca	Lilac Sachet	morning
 * f56733	Golden Poppy	afternoon
 * 9a9bc1	Sweet Lavender	night
 *
 */ 

body {
	font-family: Verdana;
	font-size: 17pt;
	background-color: ivory;
}

a {
	color: #E0B0FF; 
	text-decoration: inherit; /* no underline */
}

a.underline {
	text-decoration: underline;
	color: #ce8498;
}

h1 {
	color: #9a9bc1;
	text-align: center;
}

h2 {
	color: #9a9bc1;
	text-align: center;
}

h3 {
	color: #9a9bc1;
	text-align: center;
}

li {
	color: #f56733;
}

img {
	background-color: green;
	height: 150px;
	width: 150px;
	object-fit: cover;
	border-radius: 50%;
	border: 2px solid;
} 

div.content-div {
	max-width: 100%;
	min-height: 175px;
	color: #ce8498;
	margin: 25px;
	padding: 25px;
	border-radius: 10px;
	border: 5px solid;
	text-align: center;
}

div.day {
	min-height: 100px;
	/*
	border-radius: 5px;
	border: 2px solid #e9adca;
	margin: 25px;
	padding: 10px;
	color: #9a9bc1;
	*/
	border-bottom: 2px solid;
}


div.morning {

	color: #e9adca;
	border-radius: 5px;
	border: 2px solid;
	margin: 10px;
	padding: 5px;
}

div.afternoon {
	color: #ce8498;
	border-radius: 5px;
	border: 2px solid;
	margin: 10px;
	padding: 5px;
}

div.night {
	border-radius: 5px;
	color: #9a9bc1;
	border: 2px solid;
	margin: 10px;
	padding: 5px;
}

p {
	padding: 10px;
}

section.centered {
	vertical-align: middle;
}

section.poetry {
	white-space: pre-line;  
}
