@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');

.page-header {
	background-color: ghostwhite;
	padding: 1em;
	border-radius: var(--border-radius-small);
	display: flex;
}

.page-header > div {
	flex: 1;

}
.page-header p {
	background-color: var(--banner-shadow);
	padding: 1em;
	border-radius: var(--border-radius-small);
	border: 2px solid ghostwhite;
	margin: .7em 0 0 3.5em;
}
.page-header > h2 {
	margin: 0;
	font-family: 'Inter', sans-serif;
	font-size: var(--page-header-size);
	padding-left: 12px;
	/* color: snow; */
	text-shadow:
		var(--banner-shadow) 1px 1px,
		var(--banner-shadow) 2px 2px,
		var(--banner-shadow) 3px 3px,
		var(--banner-shadow) 4px 4px,
		var(--banner-shadow) 5px 5px,
		var(--banner-shadow) 6px 6px,
		var(--banner-shadow) 7px 7px,
		var(--banner-shadow) 8px 8px,
		var(--banner-shadow) 9px 9px,
		var(--banner-shadow) 10px 10px,
		var(--banner-shadow) 11px 11px,
		var(--banner-shadow) 12px 12px
}

@media (max-width: 700px) {
	.page-header {
		flex-wrap: wrap;
	}
	.page-header > h2 {
		flex: 100%; /*flex with a unit value implies flex-basis, unitless value => flex-grow*/
	}
	.page-header p {
		margin-left: 0;
	}
}
.icon {
	width: 85px;
	height: 85px;
	border: 5px solid #dcb160;
	border-radius: 42.5px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 60px;
}

.filter-icons {
	display: flex;
	flex-direction: row-reverse;
	flex-grow: 1;
	align-items: center;
}

.filter-icons>* {
	margin-left: 0.5em;
}

.book-icon {
	background-image: url("/images/book.svg");
}

.controller-icon {
	background-image: url("/images/controller.svg");
}

.anime-icon {
	background-image: url("/images/anime-eye.svg");
	background-size: 50px;
	background-position-y: -2px;
	background-position-x: 4px;
}

.place-icon {
	background-image: url("/images/place.svg");
	background-size: 50px;
}

article {
	background-color: ghostwhite;
	padding: 1em;
	border-radius: var(--border-radius-small);
}



.article-icon {
	border: 1px black solid;
	height: 100px;
	width: 100px;
}

article+article {
	margin-top: 1em;
}

.post-icon {
	float: left;
	width: 150px;
	border-width: 3px;
	border-style: solid;
	border-radius: 5px;
	padding: 1em;
	margin-right: 1em;
	margin-bottom: 1em;
}

/* Allows us to define the border-color just once for each type...*/
article * {
	border-color: inherit
}

.book {
	border-color: #091c7f;
}

.place {
	border-color: #1592b4;
}

.game {
	border-color: #535ba2;
}

.anime {
	border-color: #ffa555;
}


.post-header {
	overflow: auto;
	margin-bottom: 1em;
}

.post-header>h2 {
	margin-top: 0;
	margin-bottom: 0;
}

.rating,
.date-written {
	margin: 0;
}

.post-header+hr {
	clear: left;
}

.date-written {
	border: 1px solid;
	border-radius: 3px;
	padding: 0.1em 0.5em;
	display: inline-block;
}

address,
.author,
.date-written {
	font-size: .7rem;
}

address,
.author {
	margin-top: 0;
	margin-bottom: 0;
}

.blog-content {
	border-top: 5px var(--font-color) dotted;
	clear: left;
	line-height: 1.4;
	display: flex;
}

.blog-content > div {
	flex: 2;
}

.blog-content > aside {
	margin-top: 1em;
	margin-left: 1em;
	flex: 1;
	text-align: center;
}

cite {
	font-style: normal;
}
.steam {
	width: 100%;
}

.netflix {
	width: 100%;
	height: 400px;
}

.missing-stars {
	filter: grayscale(100%);
}

.action-bar {
	text-align: center;
	margin: 1em auto;
	width: fit-content;
	padding: .2em .5em;
	border: 1px solid var(--font-color);
	border-radius: 5px;
}
.action-bar a {
	color: var(--font-color);
}
.material-symbols-outlined {
	vertical-align: middle;
}

.blog-picture {
	margin: 0;
	border: 1px solid var(--font-color);
	padding: .5em;
}

@media (max-width: 700px) {
	.filter-icons {
		display: none;
	}
	.post-icon {
		width: 120px;
	}

	.blog-content {
		flex-wrap: wrap;
	}
	.blog-content > div {
		flex: 100%;
	}
	.blog-content > aside {
		flex: 100%;
		margin-left: 0;
	}
}