body, html {
	padding: 10px;
	font-family: 'MS PGothic', sans-serif;
	color: white;
	background: url('https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fwallpapers.com%2Fimages%2Fhd%2Fchristopher-reeve-superman-flying-tvf5rvkjv7e3rmyw.jpg&f=1&nofb=1&ipt=e463f8ac1b01dfa4c9ec37c6bc53bc2459ac12f1ba7c9de13652852298b644c7');
}

* { 
	box-sizing: border-box;
}


.box {
	max-width: 55rem;
	margin: 5vw auto 12px auto;
	border: 6px ridge var(--border);
	outline: 3px solid var(--gradientTop);
	outline-offset: 4px;
	border-radius: 10px;
	display: flex;
	flex-wrap: wrap;
	padding: 5px;
	gap: 5px;
}



header {
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 120px; /* change banner height here*/
	border: 2px ridge var(--border);
	border-radius: 5px;
	position: relative;
}

header span {
	font-size: 2.5rem;
	position: absolute;
	bottom: 0;
	right: 10px;
	margin: 10px;
	font-weight: bold;
	text-shadow: 1px 1px var(--text),
		-1px 1px var(--text),
		1px -1px var(--accent),
		-1px -1px var(--accent);
}

section {
	border: 2px ridge var(--border);
	border-radius: 5px;
	background: linear-gradient(var(--gradientTop),var(--gradientBottom));
	padding: 5px;
}

img {
	max-width: 100%;
}

hr.one {
	border: 2px solid #E20025;
}

hr.two {
	border: 2px solid #FFED10;
}

hr.three {
	border: 2px solid #0060AA;
}

p {
	font-size: 20px;
	line-height: 1.75rem;
}

h1 {
	font-size: 2rem;
	text-shadow: 2px 2px #E20025;
}

h2{
	font-size: 1.5rem;
}

h3{
	font-size: 1.25rem;
	text-decoration: underline;
}


.transp {
	background: rgba(1,0,0,0.2);
	padding: 3px;
}

a {
	color: #FFED10;
}

a:hover {
	color: #E20025;
}

color.one {
	color: #E20025;
	text-shadow: 2px 2px #FFED10;
}

color.two {
	color: #0060AA;
	text-shadow: 2px 2px #FFED10;
}

color.three {
	text-shadow: 1px 1px #E20025;
}

color.four {
	text-shadow: 1px 1px #0060AA;
}





