/* Free WebFonts from OnlineWebFonts.com */
@font-face {font-family: "Aldrich"; src: url("//db.onlinewebfonts.com/t/8adb01f8db81e96685a037d275971bed.eot"); src: url("//db.onlinewebfonts.com/t/8adb01f8db81e96685a037d275971bed.eot?#iefix") format("embedded-opentype"), url("//db.onlinewebfonts.com/t/8adb01f8db81e96685a037d275971bed.woff2") format("woff2"), url("//db.onlinewebfonts.com/t/8adb01f8db81e96685a037d275971bed.woff") format("woff"), url("//db.onlinewebfonts.com/t/8adb01f8db81e96685a037d275971bed.ttf") format("truetype"), url("//db.onlinewebfonts.com/t/8adb01f8db81e96685a037d275971bed.svg#Aldrich") format("svg"); } 
@font-face {font-family: "AmpleSoftPro-Regular"; src: url("//db.onlinewebfonts.com/t/a21f17cc7904597ec24db2c98c8eb1d4.eot"); src: url("//db.onlinewebfonts.com/t/a21f17cc7904597ec24db2c98c8eb1d4.eot?#iefix") format("embedded-opentype"), url("//db.onlinewebfonts.com/t/a21f17cc7904597ec24db2c98c8eb1d4.woff2") format("woff2"), url("//db.onlinewebfonts.com/t/a21f17cc7904597ec24db2c98c8eb1d4.woff") format("woff"), url("//db.onlinewebfonts.com/t/a21f17cc7904597ec24db2c98c8eb1d4.ttf") format("truetype"), url("//db.onlinewebfonts.com/t/a21f17cc7904597ec24db2c98c8eb1d4.svg#AmpleSoftPro-Regular") format("svg"); } 

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}
,kbd,samp{font-family:monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}/*! HTML5 Boilerplate v7.3.0 | MIT License | https://html5boilerplate.com/ */ html{color:#222;font-size:1em;line-height:1.4}::-moz-selection{background:#b3d4fc;text-shadow:none}::selection{background:#b3d4fc;text-shadow:none}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}audio,canvas,iframe,img,svg,video{vertical-align:middle}fieldset{border:0;margin:0;padding:0}textarea{resize:vertical}.browserupgrade{margin:.2em 0;background:#ccc;color:#000;padding:.2em 0}.hidden{display:none!important}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.sr-only.focusable:active,.sr-only.focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;white-space:inherit;width:auto}.invisible{visibility:hidden}.clearfix:after,.clearfix:before{content:" ";display:table}.clearfix:after{clear:both}@media print{*,:after,:before{background:0 0!important;color:#000!important;box-shadow:none!important;text-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}}

/* START OWN CODE */
* {
  box-sizing: border-box;
}

/* Custom HAM Radio Style */
:root {
	--textColor: #222;
	--bgColor: #f0f0f0;
	--accentColor: #00008b;
	--borderLine: 1px solid #ccc;
	--fontMain: "Consolas", "Monaco", monospace;
	--fontHead: "Aldrich", sans-serif;
}

body {
	font-family: var(--fontMain);
	color: var(--textColor);
	background-color: #fff;
	line-height: 1.5;
	margin: 0;
}

a {
	color: inherit;
	text-decoration: none;
}

#container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	border-left: var(--borderLine);
	border-right: var(--borderLine);
}

header#logo {
	padding: 3rem 2rem;
	background: var(--bgColor);
	border-bottom: 2px solid var(--accentColor);
}

header#logo h1 {
	font-family: var(--fontHead);
	font-size: 3.5rem;
	margin: 0;
}

header#logo p.description {
	font-family: var(--fontHead);
	font-size: 1.5rem;
	margin: 0.5rem 0 0 0;
	color: #555;
}

nav {
	background: #333;
	padding: 0.8rem 2rem;
}

nav ul {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 2.5rem;
}

nav ul li a {
	color: #fff;
	font-family: var(--fontHead);
	text-transform: uppercase;
	font-size: 1rem;
}

main {
	padding: 2rem;
}

h2 {
	font-family: var(--fontHead);
	border-bottom: 2px solid var(--accentColor);
	padding-bottom: 0.5rem;
}

@media (max-width: 768px) {
	#container { width: 100%; border: none; }
	header#logo h1 { font-size: 2.5rem; }
	nav ul { flex-direction: column; gap: 1rem; }
}