/* CSS by Justin Livelo */

/* IMPORTED FONTS */

@import url('https://fonts.googleapis.com/css2?family=Datatype:wght@100..900&family=Lato:wght@400;700&family=Seymour+One&display=swap');

/* CSS RESET */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* ROOT VARIABLES */

:root {
    --black: #212121;
    --white: #F5F5F5;
    --lt-blue: #DCFAFC;
    --font-base: 'Datatype', monospace;
}

/* GLOBAL STYLES */

body {
	font-family: var(--font-base);
	line-height: 1.4;
	color: var(--white);
	background-color: var(--black);
	text-align: center;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	overflow-x: hidden;
}

pre {
	overflow-x: hidden;
	max-width: 100%;
}

header {
	background-color: var(--black);
	color: var(--white);
	text-align: center;
	padding: 2rem 1rem;
	border-bottom: 0.15rem solid var(--lt-blue);
}

header h1 {
	font-size: 2.0rem;
}

nav {
	background-color: var(--black);
	color: var(--white);
	font-weight: 700;
	padding: 0.15rem;
	border-bottom: 0.2rem solid var(--lt-blue);
}

nav a {
	color: var(--white);
}

nav ul {
	list-style: none;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 0;
	margin: 0.5rem;
	gap: 200px;
}

main {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
	padding: 2rem 1rem;
	justify-content: flex-start;
	padding-bottom: 3rem;
}

h2 {
	font-size: 2rem;
	font-weight: 700;
	text-decoration: underline var(--lt-blue);
	margin-bottom: 2rem;
}

#ascii-panda {
	margin-bottom: 1.5rem;
}

#ascii-boxing-glove {
	margin-top: 3.5rem;
}

footer {
	border-top: 0.15rem solid var(--lt-blue);
	padding: 1rem;
	margin-top: 1rem;
	color: var(--white);
}


/* LARGE */
@media (min-width: 1024px) {
	main {
		max-width: 800px;
		margin: 0 auto;
		padding: 2rem;
	}
}