
.container {
	line-height: 1.2em;
	margin: 1em auto;
	display: grid;
	grid-template-columns: 1fr 1fr 0.5fr 1.5fr;
	grid-template-rows: repeat(7, auto);
	grid-template-areas:
		"banner banner banner banner"
		"side1 main main main"
		"side1 likes likes dislikes"
		"side1 interests interests interests"
		"side1 footer footer footer";
}

.maininfo {
	grid-area: main;
}

.felixlet {
	height: 5.5em;
	margin-right: 1.5em;
	float: left;
	border-radius: 1em;
}

.intro {
	width: 100%;
}

.toast {
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}


.basic {
	font-weight: 1000;
	filter: drop-shadow(0px 1px #00364a) drop-shadow(0 -1px #00364a)
		drop-shadow(1px 0 #00364a) drop-shadow(-1px 0 #00364a);
	color: white;
	font-family: Pixelon;
	font-size: 1.5em;
	width: 100%;
}

.basic img {
	height: 0.75em;
}

.textbox {
	overflow-x: hidden;
	height: 18em;
	overflow-y: scroll;
	margin: 0 auto;
	width: 100%;
}

.textbox p {
	padding: 0 1em 0.5em 1em;
	margin: 0 auto;
	text-align: left;
}

.textbox h4 {
	text-align: center;
	font-weight: 1000;
	filter: drop-shadow(0px 1px #00364a) drop-shadow(0 -1px #00364a)
		drop-shadow(1px 0 #00364a) drop-shadow(-1px 0 #00364a);
	color: white;
	font-family: 'Pixelon';
	line-height: 0.5em;
	margin: 0.5em auto;
}

.likes ul,
.dislikes ul {
	margin: 0 0.5em 0 0;
	height: 5em;
	overflow-y: scroll;
}

.labels {
	line-height: 0.75em;
	font-weight: 1000;
	filter: drop-shadow(0px 1px #00364a) drop-shadow(0 -1px #00364a)
		drop-shadow(1px 0 #00364a) drop-shadow(-1px 0 #00364a);
	color: white;
	font-family: 'Pixelon';
	font-size: 1em;
	margin: 0 auto 0.5em auto;
}

.maininfo p {
	margin: 0.5em auto;
}

.likes {
	border: var(--main-border);
	border-radius: var(--main-radius);
	background-color: var(--main-bg);
	grid-area: likes;
}

.dislikes {
	border: var(--main-border);
	border-radius: var(--main-radius);
	background-color: var(--main-bg);
	grid-area: dislikes;
}

.interests {
	border: var(--main-border);
	border-radius: var(--main-radius);
	background-color: var(--main-bg);
	grid-area: interests;
}

.interests p {
	text-align: left;
	margin-bottom: 0.25em;
}

.interests img {
	width: 100%;
}


@media only screen and (max-width: 850px) {
	.jobname {
		font-size: 1.2em !important;
	}

	body {
		padding: 0;
		margin: 0;
	}

	.container {
		align-self: start;
		width: 95% !important;
		margin: 0 auto;
		grid-gap: none;
		grid-template-columns: 0.5fr 1fr;
		grid-template-rows: repeat(8, auto);
		grid-template-areas:
			"banner banner"
			"side1 main"
			"side1 likes"
			"side1 dislikes"
			"side1 interests"
			"side1 footer";
	}

	.textbox {
		height: 16em;
	}

	.likes ul,
	.dislikes ul {
		height: 6em;
	}

	.textbox strong {
		line-height: 1.6;
		font-size: 1.6em;
	}


	.footer {
		width: 55%;
	}
}
