@import url('https://fonts.googleapis.com/css2?family=Courier+Prime&family=Open+Sans&family=Rubik&family=Staatliches&display=swap');

:root {
	--purple: rgba(102,51,102, 0.75);
	--primary: rgba(0,0,0,0.75);
	--secondary: rgba(0,0,0,0.25);
}

body {
	margin: 0;
	padding: 0;
	background: #202124;
	font-family: 'Open Sans', sans-serif;
}

header {
	position: fixed;
	top: 0;
	right: 0;
	text-align: right;
	padding: 5px 1em;
	background-color: var(--primary);
	border-bottom-left-radius: 1em;
	font-family: 'Staatliches', cursive;
	font-size: 150%;
}

header a {
	text-decoration: none;
	color: #fff;
}

#main, main {
	color: #e8eaed;
	text-align: justify;
	padding: 3rem;
	max-width: 800px;
	margin: 2em auto;
	font-size: 5mm;
	line-height: 1.44;
}

.columns {
	column-count: 2;
	column-gap: 5em;
}

/* Basketball */

.header {
	display: flex;
	justify-content: space-between;
}

.item span {
	display: block;
}

.skillTitle, .header {
	font-weight: bold;
	font-style: oblique;
}

.skillDefault {
	text-align: left;
}

.item p, .skillDefault, .skillSubtitle, .skillPrereq {
	font-size: smaller;
}

#warning {
	color: red;
	font-size: larger;
}

h1, h2, h3 {
	margin-bottom: 0.5em;
	font-family: 'Rubik', sans-serif;
	font-weight: bold;
}

h1 {
	margin-top: 3em;
}

h2, h3 {
	margin-top: 2em;
}

blockquote h3 {
	margin: 0.5em 0;
}

.banner, blockquote, pre {
	padding: 1em;
	font-size: smaller;
	color: #666;
	border-left: 5px solid var(--primary);
}

.banner, blockquote {
	font-style: italic;
}

blockquote {
	margin-top: 2em;
	margin-bottom: 2em;
	margin-right: 0;
	border-color: var(--secondary);
	font-family: 'Rubik', sans-serif;
}

blockquote footer {
	width: 100%;
	text-align: right;
	font-size: smaller;
}

blockquote.fancy {
	font-size: larger;
	border-left: none;
}

img {
	width: 100%;
}

code, pre {
	background-color: #666;
	padding: 0.25em;
	border-radius: 3px;
	color: #eee;
	font-size: smaller;
	font-family: 'Courier Prime', monospace;
}

code {
	margin-top: -0.25em;
}

pre {
	white-space: pre-wrap;
	padding-top: 1em;
}

kbd {
	background-color: #666;
	padding: 0 0.5em;
	border-radius: 3px;
	color: rgba(250,0,0,0.75);
	font-size: smaller;
	box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
}

.flex section {
	width: 40%;
	flex-grow: 1;
}

figcaption {
	font-size: smaller;
}

div#websites h1 {
	margin-top: 3em;
}

a, a:visited {
	color: darkturquoise;
}

a:hover, a:active {
	color: #fff;
}