@import url("https://static.cadavis.net/fonts/ibm-plex/mono/ibm-plex-mono.css");

:root {
	--white: #fff;
	--yellow: #f3d056;
	--orange: #db6500;
	--blue-dark: #101d3a;
	--blue-mid: #1d2b4b;
	--blue-light: #2a3c64;
}

*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
body {
	background: var(--blue-dark);
	color: var(--white);
	font-family: "IBM Plex Mono", system-ui, sans-serif;
	font-size: 1.1rem;
	line-height: 1.3;
	text-align: center;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
}
a {
	color: var(--yellow);
	font-weight: bold;
	text-decoration: none;
}
a:hover {
	color: var(--orange);
	text-decoration: underline;
}
address, figcaption, figure, ol, p, pre {
	margin-bottom: 2rem;
}
audio, canvas, embed, iframe, img, object, svg, video {
	border: 0;
	display: block;
	max-width: 100%;
	vertical-align: middle;
}
audio {
	width: 100%;
}
button, fieldset, input, select, textarea {
	border: 0.5rem solid var(--orange);
	font-size: 1.1rem;
	line-height: 1.3;
	padding: 0.25rem 0.5rem;
}
canvas, img, svg, video {
	height: auto;
}
h1 {
	color: var(--blue-mid);
	font-size: 3rem;
	font-weight: bold;
	text-transform: uppercase;
}
.fancy-i span {
	color: var(--orange);
	position: relative;
	text-transform: lowercase;
}
.fancy-i span::before {
	color: var(--blue-mid);
	content: "\0131";
	position: absolute;
}
h2 {
	color: #1d2b4b;
	font-size: 2rem;
	font-weight: normal;
}
h3 {
	border-bottom: 0.1875rem solid var(--yellow);
	font-size: 1.75rem;
	font-weight: bold;
	margin-bottom: 0.5rem;
	padding-bottom: 0.5rem;
}
h4 {
	font-size: 1.375rem;
	font-style: italic;
	font-weight: 500;
	margin-bottom: 1rem;
	text-align: center;
	text-align: left;
}
h5 {
	color: var(--blue-mid);
	font-size: 1.1rem;
	font-weight: bold;
	text-transform: uppercase;
}
ol, ul {
	padding-left: 2rem;
	text-align: left;
}
:is(ol, ul) :is(ol, ul) {
	margin-bottom: 0;
}
header, footer {
	background: var(--yellow);
	padding: 2rem 25%;
}
header {
	border-top: 0.5rem solid var(--orange);
}
section {
	padding: 3rem 25%;
}
section:nth-child(2) {
	background: var(--blue-mid);
}
section:nth-child(3) {
	background: var(--blue-light);
}
.section-heading {
	margin-bottom: 2rem;
}
.button {
	background: var(--yellow);
	border-radius: 2rem;
	color: var(--blue-mid);
	display: block;
	margin: 3rem auto;
	padding: 1rem 2rem;
	transition: background 0.5s ease;
	width: fit-content;
	&:hover {
		background: var(--orange);
		color: var(--blue-mid);
		text-decoration: none;
	}
}
footer {
	border-bottom: 0.5rem solid var(--orange);
}
@media (max-width: 800px) {
	header, footer, section {
		padding-left: 3%;
		padding-right: 3%;
	}
}
