html {
	
	background-color: #dcd3bb;
	color: #bb9d5c;
	font-family: Arial, sans-serif;
}

body {
	max-width: 80%;
	margin: 0 auto;
}

img {
	border-color: #b83655;
	border-width: 5px;
	border-style: solid;
	display: block;
	margin: auto;
	max-width: 100%;
}

.done {
  color: darkseagreen;
  text-decoration: line-through solid black 2px;
}

a :not(:visited) {
	color: blue;
}
a :visited {
	color: purple;
}

h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	text-decoration: underline;
	text-decoration-color: #9374b3;
	text-decoration-style: solid;
	transition: color 0.2s, text-decoration-color 0.2s;
}

h1:hover, h2:hover, h3:hover, h4:hover, h5:hover, h6:hover {
	color: #614084;
	text-decoration-color: #614084;
}