@charset "UTF-8";

html {
	background-color: #f7f9f9;
}

body {
	min-width: 350px;
	max-width: 800px;
	min-height: 500px;
	margin: 20px auto;
	padding: 0px;
	background-color: none;
	font-family: monospace, 'Courier New', Courier;
	color: #b3d9ff;
}

section,
footer,
header {
	padding: 25px 0 25px 0;
}

main {
	width: 100%;
	height: 100%;
	padding: 10px;
	background-color: #fff;
}

footer {
	background-color: none;
	width: 100%;
	height: auto;
	font-size: 0.7em;
	color: #cecece;
	margin: 15px 0 0 0;
}

h1,
h2,
h3 {
	color: #a0ccf7;
	font-family: Courier, monospace, 'Courier New';
}

hr {
	opacity: 0.1;
}

ul {
	list-style-type: none;
}

a {
	color: #b3d9ff;
	text-decoration: none;
	margin: 5px;
}

a:hover {
	color: #a0ccf7;
}

footer a {
	color: #cecece;
	background-color: none;
}

.box-shadow {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	-webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	-moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}

.copyright:after {
	content: "©2023 All rights reserved";
}

.poweredby:before {
	content: "Powered by ";
}

.pipe:before {
	content: " | ";
	font-weight: bold;
	padding: 5px;
}

.center {
	text-align: center;
	justify-content: center;
	align-items: center;
	align-content: center;
}

.container {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
}

.inline {
	flex-wrap: nowrap;
}

.line {
	display: list-item;
	list-style-type: none;
}

.text {
	font-family: monospace, Courier, 'Courier New';
	font-size: 1em;
}

.text-large {
	font-size: 2.5em;
}

.text-medium {
	font-size: 2em;
}

.text-small {
	font-size: 0.7em;
}

.glow {
	color: #fff;
	font-weight: 900;
	text-align: center;
	-webkit-animation: glow 1s ease-in-out infinite alternate;
	-moz-animation: glow 1s ease-in-out infinite alternate;
	animation: glow 1s ease-in-out infinite alternate;
}

@keyframes glow {
	from {
		text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #a0ccf7, 0 0 40px #a0ccf7, 0 0 50px #a0ccf7, 0 0 60px #a0ccf7, 0 0 70px #a0ccf7;
	}

	to {
		text-shadow: 0 0 20px #fff, 0 0 30px #808080, 0 0 40px #808080, 0 0 50px #808080, 0 0 60px #808080, 0 0 70px #808080, 0 0 80px #808080;
	}
}