html {
	background-color: rgb(40 4 10);
	background-image: url(/Blogs/AlphabetSoup.png);
	background-attachment: fixed;
	scrollbar-color: rgb(120 15 120) rgb(65 0 65);
}

body {
	color: aliceblue; /* :) */
}

p, h1, h2, h3, a, li, button, input, label, img {
	font-family: ocr-a-std, monospace;
	overflow-wrap: anywhere;
}

p {
	margin-left: 30px;
	margin-right: 30px;
}

a {
	text-decoration: underline;
	color: aliceblue;
}

a:not(.topbar, .navbar > a) {
	display: inline-block;
	margin-bottom: 20px;
}

.topbar {
	display: inline-block;
	margin-top: 6px;
	margin-bottom: 12px;
	max-width: 100%;
	max-height: 100vh;
	height: auto;
}

#banner {
	max-width: 100%;
	height: auto;
}

img {
	display: block;
	margin: auto;
	margin-bottom: 20px;
	max-width: 100%;
	object-fit: contain;
}

img:not(#banner) {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25), 0 6px 20px 0 rgba(0, 0, 0, 0.25);
}

header {
	text-align: center;
}

.header-title {
	text-align: center;
}

hr {
	width: 80%;
	margin-top: 25px;
	margin-bottom: 50px;
	border-style: hidden;
	border-top: 3px dashed aliceblue;
	color: aliceblue;
}

.navbar {
	margin: auto;
	padding-top: 10px;
	padding-bottom: 10px;
	max-width: 850px;
	background-color: rgb(80 0 80);
	border: 7px solid rgb(120 15 120);
	border-radius: 17px;
	outline: 3px solid rgb(165 85 165);
	display: flex;
	justify-content: space-evenly;
}

.outer-container {
	margin: auto;
	margin-top: 15px;
	margin-bottom: 15px;
	padding-bottom: 1px;
	max-width: 900px;
	background: repeating-linear-gradient(0deg, rgb(20 5 30), rgb(20 5 30) 30px, rgb(50 15 70) 30px, rgb(50 15 70) 60px);
	border: 7px solid rgb(120 15 120);
	border-radius: 17px;
	outline: 3px solid rgb(165 85 165);
}

.inner-container {
	margin: auto;
	padding-top: 5px;
	padding-left: 15px;
	padding-right: 15px;
	max-width: 775px;
	background-color: rgb(65 0 65);
	border-left: 7px solid rgb(120 15 120);
	border-bottom: 7px solid rgb(120 15 120);
	border-right: 7px solid rgb(120 15 120);
	border-radius: 0 0 17px 17px;
}

footer {
	width: 100%;
	text-align: center;
	font-size: smaller;
}

@media screen and (max-width: 850px) {
	.inner-container {
		margin-left: 15px;
		margin-right: 15px;
	}
}