aside {
	float: right;
	margin-bottom: 40px;
	margin-left: 40px;
	width: 300px;
}

aside .content {
	font-size: 85%;
}

h1 {
  font: 350% "Goudy Bookletter 1911", serif;
	grid-area: header;
	margin: 0;
}

h1 img {
	max-width: 100%;
}

h3 {
	font: bold 100% Barlow, sans-serif;
}

ul.images {
	display: grid;
	gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	list-style-type: none;
	margin-left: 0;
	padding-left: 0;
}

ul.images img {
	height: auto;
	max-width: 100%;
}

@media screen and (max-width: 800px) {
	aside {
		float: none;
		margin-left: 0;
		width: 100%;
	}

	aside .content {
		columns: 2;
	}
}

@media screen and (max-width: 500px) {
	aside .content {
		columns: 1;
	}
}