/* yo imma do this /mobile first/ */


ul {
		list-style-type: "- ";
}

pre {
		white-space: pre-wrap;
		background-color: #f0f0f0;
		padding: 2px;
}

p {
		font-family: serif;
}

h1 {
		font-size: xx-large;
		font-weight: bold;
}

h2 {
		font-size: x-large;
		font-weight: bold;
		font-variant: small-caps;
		border-bottom: 1px solid grey;
}
h3 {
		font-variant: small-caps;
		/*border-bottom: 1px solid grey;*/
		text-decoration: underline;
}

nav {
		background-color: #f9f9f9;
}

aside {
		/*border: 1px solid red;*/
		border-left: 2px solid #c0c0c0;
		color: black;
		background-color: #f6f6f6;
		border-radius: 3px;
		padding-left: 5px;
		padding-top: 2px;
		padding-bottom: 2px;
		font-size: smaller;
		margin-left: 2em;
		margin-right: 2em;
}

.fn {
		white-space: nowrap;
		position: relative;
}

.close {
		position: absolute;
		right: 20px;
		font-size: x-large;
}

.foot {
		visibility: hidden;
		display: flex;
		position: fixed;
		margin-bottom: 30px;
		margin-bottom: 2px;
		min-height: 40px;
		white-space: normal;
		bottom: 0px;
		background-color: #f0f0f0;
		border: 2px solid #c0c0c0;
		width: 90%;
}

.foottxt {
		width: 90%;
		margin: 2px;
		font-size: larger;
}

.fn:hover .foot {
		/*color: green;*/
		/*background-color: red;*/
		visibility: visible;
}

.foot:target {
		visibility: visible;
}

.hover {
		white-space: normal;
		position: absolute;
		visibility: hidden;
		/*background-color: orange;*/
		width: 300px;
		top: -20px;
}
.hoverbox {
		background-color: #f0f0f0;
		border: 2px solid #c0c0c0;
		border-radius: 3px;
		position: absolute;
		max-width: 300px;
		padding: 3px;
}
.hovertxt {
		padding: 2px;
}


.codeblock {
		display: block;
		/*white-space: pre-wrap;*/
		margin-bottom: 1em;
}

figure {
		text-align: center;
}
img {
				width: 90%;
}
figcaption {
		font-size: small;
		font-style: italic;
}

figure.quote {
		background-color: #f0f0f0;
		border-radius: 10px;
		border-left: solid 4px #d0d0d0;
}
blockquote {
		padding-top: 4px;
		padding-bot: 2px;
}

table {
		width: 100%;
		overflow-x: scroll;
		display: block;
		border-collapse: collapse;
}

td {
		border: 1px solid #909090;
}
th {
		border: 1px solid #a0a0a0;
		background-color: #f0f0f0;
}

@media screen and (min-width: 1000px) {
		article {
				max-width: 800px;
				margin: 0 auto;
		}
		aside {
				margin-left: 6em;
		}
		.fn:hover .hover {
				visibility: visible;
		}
		.fn:hover .foot {
				/*color: green;*/
				visibility: hidden;
		}
		.foot:target {
				visibility: hidden;
		}
		pre {
				width: 80%;
				margin: 0 auto;
		}
		figure {
				width: 70%;
				margin: 0 auto;
		}
		blockquote {
				width: 70%;
				margin: 0 auto;
				padding-bottom: 4px;
		}
	
}
