body {
	font-family: Arial, Helvetica, sans-serif;
	background-color: #fff5ed;
	color: #323232;
	margin: 0;
	padding: 0;
}

.mobile-full-668 {
	width: 668px;
	aspect-ratio: 16 / 9;
}

.s70-or-100 {
	width: 70%;
	aspect-ratio: 16 / 9;
}

main {
	width: 80ch;
	max-width: 100%;
	margin: 0 auto;
	padding-bottom: 20px;
}

#nsfw-toggle {
	position: fixed;
	top: 16px;
	left: 16px;
	z-index: 1000;
}

main h1:first-child {
	margin-top: 0;
}

.quote {
	display: flex;
	flex-direction: row;
	gap: 10px;
	border: 1px solid black;
	border-radius: 12px;
	padding: 12px;
}

.quote img {
	height: 20px;
	width: 20px;
}

.quote p:nth-child(2) {
	margin-top: 0;
	width: auto;
}

.quote > div > p:nth-child(1) {
	margin-top: 0;
}

.quote *:last-child {
	margin-bottom: 0;
}

.photo-row {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

.nsfw {
	filter: blur(50px);
	clip-path: inset(0px round 10px);
	transition: filter 0.4s ease;
}

.nsfw.shown {
	filter: blur(0);
}

.photo-row > img, 
.photo-row > video,
.photo-row > * > img,
.photo-row > * > video {
    display: block;
    width: 300px;
		border-radius: 8px;
}

.captioned p {
    width: 300px;
    text-align: center;
    margin: 0;
		margin-top: 5px;
}

.text-left {
	text-align: left !important;
}

/* Responsive for phones */
@media (max-width: 600px) {
	.quote {
		flex-direction: column;
	}
	.photo-row > img,
	.photo-row > video,
	.photo-row > * > img,
	.photo-row > * > video {
		width: 100%;
		max-width: 300px;
	}
	main {
		width: 100vw;
		padding: 0 16px;
		box-sizing: border-box;
	}
	.mobile-full-668 {
		width: 100%;
		height: auto;
	}
	.s70-or-100 {
		width: 100%;
	}
}
