:root {
	background-color: #2a2a2e;
	color: white;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

#title {
	text-align: center;
}

#img-div {
	float: left;
	max-width: 30%;
}

#image {
	max-width: 100%;
	display: block;
}

#img-caption {
	font-size: small;
	font-style: italic;
	text-align: center;
}

#tribute-info {
	display: grid;
	grid-template-columns: 4rem auto;
	
}

#tribute-info > h2, #tribute-info blockquote {
	grid-column: 1 / span 2;
}

#tribute-link {
	color: lightblue;
}

div.year {
	align-self: center;
	font-weight: bold;
}

div.event {
	border-left: 1px solid white;
	border-radius: .25rem;
	padding-left: 0.5rem;
	margin: 0.5rem 0;
}

blockquote {
	font-style: italic;
	border-left: 1px solid white;
	border-radius: .25rem;
	padding-left: 0.5rem;
}

footer {
	text-align: center;
	font-style: italic;
	font-size: small;
}

@media only screen and (max-width: 800px) {
	#img-div {
		max-width: unset;
		width: 100%;
		float: none;
		margin: 0;
	}
	#img-div img {
		width: 30%;
		margin-left: auto;
		margin-right: auto;
		
	}
}