:root{
	color-scheme: dark light;
	margin: 10px 10px 10px 10px;
}

html, body {
	background-color: #1c1b22;
	color: white;
}

a {
	color: #8c8cff;
}

h1 { color: white; }
h2 { color: white; }
h3 { color: white; }
h4 { color: white; }
h5 { color: white; }

.quest_list{
	text-align: center;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 10px 10px;
}

.quest{
	box-shadow: 0 2px 8px 0 rgba(0,0,0,0.2);
	transition: 0.3s;
	padding: 5px;
	top: -50px;
	background-color: #ffefcc;
}

.quest:hover {
	box-shadow: 10px 10px rgba(0,0,0,1);
}

.quest_id {
	font-size: 12px;
	height: 0px;
	text-align: right;
	color: black;
}

.quest_title {
	font-size: 16px;
	color: goldenrod;
}

.quest_finds {
	text-align: right;
	height: 0px;
}

.quest_rewards {
	font-size: 12px;
	color: salmon;
}

.poster_image {
	width: 64px;
	height: 64px;
	left: 5px;
	top: 5px;
	position: relative;
	text-align: center;
	box-shadow: 2px 2px 8px 2px rgba(0,0,0,0.2);
}

.poster_name {
	font-size: 12px;
	color: chocolate;
	}

.quest_description {
	height: 120px;
	color: darkgrey;
	padding: 10px 10px 10px 10px;
	box-shadow: 1px 1px 2px 2px rgba(0,0,0,0.5);
	overflow: auto;
	text-align: left;
}
