/* generic reset */

html, body, div, span, 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, section, summary, time, mark, audio, video {
	margin: 0em;
	padding: 0em;
	border: 0em;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

ol, ul {
	list-style: none;
}


/* begin custom style */

html {
	background: #F0EAD0;
}

body {
	font-family: serif;
	font-weight: 100;
	padding: 5%;
}

header {
	padding-bottom: 2rem;
}

header img {
	transition: all .2s ease-in-out;
}

header img:hover {
	transform: scale(1.1);
}

h1 {
	font-size: 4rem;
	font-weight: 1000;
	margin-bottom: -0.5rem;
	white-space: nowrap;
}

h2 {
	font-size: 1.75rem;
	font-weight: 100;
	padding-bottom: 0.5rem;
}

h3 {
	font-size: 2rem;
	font-weight: 800;
	padding-top: 1rem;
}

h4 {
	font-size: 1.5rem;
	font-weight: 300;
	display: inline;
}

p {
	padding-bottom: 1.5rem;
}

a {
	text-decoration: none;
	font-weight: 501;
	color: #000000;
}

a:hover {
	text-decoration: underline;
}

.roleYears {
	margin-left: 0.5rem;
}

#name {

}

header div {
	width: 10rem;
	height: 10rem;
	display: block;
	background-image: url('../images/sean.jpg');
	background-size: cover;
	border-radius: 125px;
	-webkit-border-radius: 125px;
	-moz-border-radius: 125px;
}

footer {
	color: #696969;
	align: bottom;
}


/* mobile and small windows */

@media only screen and (max-width: 1024px) {

h4 {
	display: block;
}

.roleYears {
	margin-left: 0rem;
}
}


/* accessibility options */

@media (prefers-reduced-motion) {
* {
	animation: none;
}
}


/* dark mode, currently disabled until I fixed the Lemmy svg :) */
/*
@zzzmedia (prefers-color-scheme: dark) {
html {
	background: #000000;
	color: #FFFFFF;
}

div {
	opacity: .75;
	transition: opacity .5s ease-in-out;
}

img:hover {
	opacity: 1;
}

a {
	color: #FFFFFF;
	font-weight: 651;
}
}
*/